A python package the utilizes the Youtube Data V3 API to get all transcripts from a given channel/playlist.
Project description
youtube-transcript-channel-api
Expand upon the youtube-transcript-api and allow users to easily request all of a channel's (or a playlist's) video caption data. This will require use of Youtube Data API v3.
API
Integrate this package into your python 3.6+ application. It is built as a sort of expansion youtube-transcript-api. For that reason, that package's warnings/use cases mostly apply to this project as well.
The package revolves around creating YoutubeChannelTranscript objects, and then using them to obtain all of the caption data from that channel's videos. This package also is built on the YouTube Data API v3, which means to use this you will need to setup your own account and use your own API Key. See here for directions how to setup your account if you don't have one.
To initialize a YoutubeChannelTranscipts object, you would call like
YoutubeChannelTranscripts(<youtube channel name>, <youtube data api key>)
You can then either call get_transcripts()
to return a dictionary of all transcripts and a list of videos that errored, or you can call write_transcripts()
to write out all of the transcripts to json files at the filepath location.
Here is an example where the package fetches all transcript data from a channel using get_transcripts()
:
from youtube_channel_transcript_api import YoutubeChannelTranscripts
channel_getter = YoutubeChannelTranscripts('A Youtube Channel', 'Youtube Data API Key here')
videos_data, videos_errored = channel_getter.get_transcripts()
In this instance, videos_data
will look like
{
'video id 1':
{ 'title': 'videos title 1',
'captions': [
{
'text': 'Hey there',
'start': 7.58,
'duration': 6.13
},
{
'text': 'how are you',
'start': 14.08,
'duration': 7.58
},
# ...
]
},
'video id 2':
{ 'title': 'videos title 2',
'captions': [
{
'text': 'Hola there',
'start': 5.1,
'duration': 6.13
},
{
'text': 'how are I',
'start': 12.08,
'duration': 3.58
},
# ...
]
},
#...
}
And videos_errored
will look like
[ ['bad video title 1', 'bad video id 1'], ['bad video title 2', 'bad video id 2'] ]
Write Transcripts
The function write_transcripts()
will write each transcript out to file in json format. It has one required parameter, file_path
, which is where the function will create the directories and files necessary. It writes all the files to the same location. Each file is named after the video's title. It returns a list of videos that have errored, in the format above.
An example would be
from youtube_channel_transcript_api import YoutubeChannelTranscripts
channel_getter = YoutubeChannelTranscripts('A Youtube Channel', 'Youtube Data API Key here')
videos_errored = channel_getter.write_transcripts('/home/user/blah/here/') # don't forget to have that last /
Shared Parameters
Both get_transcripts()
and write_transcripts()
have the same, optional parameters.
Languages
youtube-channel-transcripts-api supports users trying to get their desired language from a channel's videos. To do this you can add a languages
parameter to the call (it defaults to english).
You can also add the languages
param if you want to make sure the transcripts are retrieved in your desired language (it defaults to english).
channel_getter = YoutubeChannelTranscripts('A Youtube Channel', 'Youtube Data API Key here')
videos_data, videos_errored = channel_getter.get_transcripts(languages=['de', 'en]))
It's a list of language codes in a descending priority. In this example it will first try to fetch the german transcript ('de'
) and then fetch the english transcript ('en'
) if it fails to do so.
Cookies
Some videos are age restricted, so this module won't be able to access those videos without some sort of authentication. To do this, you will need to have access to the desired video in a browser. Then, you will need to download that pages cookies into a text file. You can use the Chrome extension cookies.txt or the Firefox extension cookies.txt.
Once you have that, you can use it with the module to access age-restricted videos' captions like so.
channel_getter = YoutubeChannelTranscripts('A Youtube Channel', 'Youtube Data API Key here')
videos_data, videos_errored = channel_getter.get_transcripts(cookies='/path/to/your/cookies.txt')
Proxies
You can specify a https/http proxy, which will be used during the requests to YouTube:
channel_getter = YoutubeChannelTranscripts('A Youtube Channel', 'Youtube Data API Key here')
videos_data, videos_errored = channel_getter.get_transcripts(proxies={"http": "http://user:pass@domain:port", "https": "https://user:pass@domain:port"})
As the proxies
dict is passed on to the requests.get(...)
call, it follows the format used by the requests library.
Just Text
You can specify for the responses to not include timestamp information in the videos_data
returned, or in the files written out to memory. By default, just_text
is set to False
channel_getter = YoutubeChannelTranscripts('A Youtube Channel', 'Youtube Data API Key here')
videos_data, videos_errored = channel_getter.get_transcripts(just_text=True)
In this example, videos_data
will now look like
{
'video id 1':
{ 'title': 'videos title 1',
'captions': 'Hey there how are you ...',
},
'video id 2':
{ 'title': 'videos title 2',
'captions': 'Hola there how are I ...',
},
#...
}
Warning
This code, in part, uses an undocumented part of the YouTube API, which is called by the YouTube web-client. So there is no guarantee that it won't stop working tomorrow, if they change how things work. It also uses the Youtube Data API v3, so it is up to you that you are following all of that API's rules. In addition, you will have to worry about managing your own Quota for the YouTube Data API, its resource for limiting calls.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file youtube-channel-transcript-api-0.0.1.tar.gz
.
File metadata
- Download URL: youtube-channel-transcript-api-0.0.1.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2793abc79bd152fbc7ec6d55739a192e78c7fbf14e4abe10cc976f1f44a9099c |
|
MD5 | ad90737d1963edd82e8f7784c88e3d0a |
|
BLAKE2b-256 | 3e98da7554e9eec8c09b3ce43bad608b3c5417ca23ee159a4cdc6e3626489993 |
File details
Details for the file youtube_channel_transcript_api-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: youtube_channel_transcript_api-0.0.1-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6d36e201071db7d39a62436ad7d2fe91b1d17412e823eea158f9f777cee4bd1 |
|
MD5 | de813b059ff92f94ffe107d26a876ea1 |
|
BLAKE2b-256 | 7566ca7fe2bef901de17c830307ac24f48835821d4f3949f09f7051a38eeca5e |