We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 674dd26 commit c767007Copy full SHA for c767007
yt_stats.py
@@ -16,7 +16,7 @@ def extract_all(self):
16
self.get_channel_video_data()
17
18
def get_channel_statistics(self):
19
- '''Extract the channel statistics'''
+ """Extract the channel statistics"""
20
print('get channel statistics...')
21
url = f'https://www.googleapis.com/youtube/v3/channels?part=statistics&id={self.channel_id}&key={self.api_key}'
22
pbar = tqdm(total=1)
@@ -35,7 +35,7 @@ def get_channel_statistics(self):
35
return data
36
37
def get_channel_video_data(self):
38
- '''Extract all video information of the channel'''
+ "Extract all video information of the channel"
39
print('get video data...')
40
channel_videos, channel_playlists = self._get_channel_content(limit=50)
41
0 commit comments