Added script for fetching Youtube channel info

This commit is contained in:
Rahul 2022-10-12 21:15:13 +05:30
parent 7d4e1a9cac
commit 53b51676ee
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# Youtube Channel Info
This is a simple script that fetches info about a youtube channel.
## Usage
- Clone the repo
- download the requirements
- add the api key and channel id
- run python script.py

View File

@ -0,0 +1,18 @@
from googleapiclient.discovery import build
youtube = build('youtube', 'v3',
developerKey='Enter API key')
ch_request = youtube.channels().list(
part='statistics',
id='Enter Channel ID')
ch_response = ch_request.execute()
sub = ch_response['items'][0]['statistics']['subscriberCount']
vid = ch_response['items'][0]['statistics']['videoCount']
views = ch_response['items'][0]['statistics']['viewCount']
print("Total Subscriber:- ", sub)
print("Total Number of Videos:- ", vid)
print("Total Views:- ", views)