youtube-transcript-api


Nameyoutube-transcript-api JSON
Version 0.6.2 PyPI version JSON
download
home_pagehttps://github.com/jdepoix/youtube-transcript-api
SummaryThis is an python API which allows you to get the transcripts/subtitles for a given YouTube video. It also works for automatically generated subtitles, supports translating subtitles and it does not require a headless browser, like other selenium based solutions do!
upload_time2023-12-27 13:18:44
maintainer
docs_urlNone
authorJonas Depoix
requires_python
license
keywords youtube-api subtitles youtube transcripts transcript subtitle youtube-subtitles youtube-transcripts cli
VCS
bugtrack_url
requirements requests mock httpretty coveralls coverage
Travis-CI
coveralls test coverage
            
# YouTube Transcript/Subtitle API (including automatically generated subtitles and subtitle translations)  

[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BAENLEW8VUJ6G&source=url) [![Build Status](https://travis-ci.com/jdepoix/youtube-transcript-api.svg?branch=master)](https://app.travis-ci.com/jdepoix/youtube-transcript-api) [![Coverage Status](https://coveralls.io/repos/github/jdepoix/youtube-transcript-api/badge.svg?branch=master)](https://coveralls.io/github/jdepoix/youtube-transcript-api?branch=master) [![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](http://opensource.org/licenses/MIT) [![image](https://img.shields.io/pypi/v/youtube-transcript-api.svg)](https://pypi.org/project/youtube-transcript-api/) [![image](https://img.shields.io/pypi/pyversions/youtube-transcript-api.svg)](https://pypi.org/project/youtube-transcript-api/)

This is a python API which allows you to get the transcript/subtitles for a given YouTube video. It also works for automatically generated subtitles, supports translating subtitles and it does not require a headless browser, like other selenium based solutions do!

## Install

It is recommended to [install this module by using pip](https://pypi.org/project/youtube-transcript-api/):

```
pip install youtube-transcript-api
```

If you want to use it from source, you'll have to install the dependencies manually:

```
pip install -r requirements.txt
```

You can either integrate this module [into an existing application](#api), or just use it via an [CLI](#cli).

## API

The easiest way to get a transcript for a given video is to execute:

```python
from youtube_transcript_api import YouTubeTranscriptApi

YouTubeTranscriptApi.get_transcript(video_id)
```

> **Note:** By default, this will try to access the English transcript of the video. If your video has a different language, or you are interested in fetching a different language's transcript, please read the section below.

This will return a list of dictionaries looking somewhat like this:

```python
[
    {
        'text': 'Hey there',
        'start': 7.58,
        'duration': 6.13
    },
    {
        'text': 'how are you',
        'start': 14.08,
        'duration': 7.58
    },
    # ...
]
```
### Retrieve different languages

You can add the `languages` param if you want to make sure the transcripts are retrieved in your desired language (it defaults to english).

```python
YouTubeTranscriptApi.get_transcript(video_id, 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. If you want to find out which languages are available first, [have a look at `list_transcripts()`](#list-available-transcripts).

If you only want one language, you still need to format the `languages` argument as a list

```python
YouTubeTranscriptApi.get_transcript(video_id, languages=['de'])
```
### Batch fetching of transcripts

To get transcripts for a list of video ids you can call:

```python
YouTubeTranscriptApi.get_transcripts(["video_id1", "video_id2"], languages=['de', 'en'])
```

`languages` also is optional here.

### Preserve formatting

You can also add `preserve_formatting=True` if you'd like to keep HTML formatting elements such as `<i>` (italics) and `<b>` (bold).

```python
YouTubeTranscriptApi.get_transcripts(video_ids, languages=['de', 'en'], preserve_formatting=True)
```

### List available transcripts

If you want to list all transcripts which are available for a given video you can call:

```python
transcript_list = YouTubeTranscriptApi.list_transcripts(video_id)
```

This will return a `TranscriptList` object  which is iterable and provides methods to filter the list of transcripts for specific languages and types, like:

```python
transcript = transcript_list.find_transcript(['de', 'en'])
```

By default this module always picks manually created transcripts over automatically created ones, if a transcript in the requested language is available both manually created and generated. The `TranscriptList` allows you to bypass this default behaviour by searching for specific transcript types:

```python
# filter for manually created transcripts
transcript = transcript_list.find_manually_created_transcript(['de', 'en'])

# or automatically generated ones
transcript = transcript_list.find_generated_transcript(['de', 'en'])
```

The methods `find_generated_transcript`, `find_manually_created_transcript`, `find_transcript` return `Transcript` objects. They contain metadata regarding the transcript:

```python
print(
    transcript.video_id,
    transcript.language,
    transcript.language_code,
    # whether it has been manually created or generated by YouTube
    transcript.is_generated,
    # whether this transcript can be translated or not
    transcript.is_translatable,
    # a list of languages the transcript can be translated to
    transcript.translation_languages,
)
```

and provide the method, which allows you to fetch the actual transcript data:

```python
transcript.fetch()
```

### Translate transcript

YouTube has a feature which allows you to automatically translate subtitles. This module also makes it possible to access this feature. To do so `Transcript` objects provide a `translate()` method, which returns a new translated `Transcript` object:

```python
transcript = transcript_list.find_transcript(['en'])
translated_transcript = transcript.translate('de')
print(translated_transcript.fetch())
```

### By example
```python
from youtube_transcript_api import YouTubeTranscriptApi

# retrieve the available transcripts
transcript_list = YouTubeTranscriptApi.list_transcripts('video_id')

# iterate over all available transcripts
for transcript in transcript_list:

    # the Transcript object provides metadata properties
    print(
        transcript.video_id,
        transcript.language,
        transcript.language_code,
        # whether it has been manually created or generated by YouTube
        transcript.is_generated,
        # whether this transcript can be translated or not
        transcript.is_translatable,
        # a list of languages the transcript can be translated to
        transcript.translation_languages,
    )

    # fetch the actual transcript data
    print(transcript.fetch())

    # translating the transcript will return another transcript object
    print(transcript.translate('en').fetch())

# you can also directly filter for the language you are looking for, using the transcript list
transcript = transcript_list.find_transcript(['de', 'en'])  

# or just filter for manually created transcripts  
transcript = transcript_list.find_manually_created_transcript(['de', 'en'])  

# or automatically generated ones  
transcript = transcript_list.find_generated_transcript(['de', 'en'])
```

### Using Formatters
Formatters are meant to be an additional layer of processing of the transcript you pass it. The goal is to convert the transcript from its Python data type into a consistent string of a given "format". Such as a basic text (`.txt`) or even formats that have a defined specification such as JSON (`.json`), WebVTT (`.vtt`), SRT (`.srt`), Comma-separated format (`.csv`), etc...

The `formatters` submodule provides a few basic formatters to wrap around you transcript data in cases where you might want to do something such as output a specific format then write that format to a file. Maybe to backup/store and run another script against at a later time.

We provided a few subclasses of formatters to use:

- JSONFormatter
- PrettyPrintFormatter
- TextFormatter
- WebVTTFormatter
- SRTFormatter

Here is how to import from the `formatters` module.

```python
# the base class to inherit from when creating your own formatter.
from youtube_transcript_api.formatters import Formatter

# some provided subclasses, each outputs a different string format.
from youtube_transcript_api.formatters import JSONFormatter
from youtube_transcript_api.formatters import TextFormatter
from youtube_transcript_api.formatters import WebVTTFormatter
from youtube_transcript_api.formatters import SRTFormatter
```

### Provided Formatter Example
Lets say we wanted to retrieve a transcript and write that transcript as a JSON file in the same format as the API returned it as. That would look something like this:

```python
# your_custom_script.py

from youtube_transcript_api import YouTubeTranscriptApi
from youtube_transcript_api.formatters import JSONFormatter

# Must be a single transcript.
transcript = YouTubeTranscriptApi.get_transcript(video_id)

formatter = JSONFormatter()

# .format_transcript(transcript) turns the transcript into a JSON string.
json_formatted = formatter.format_transcript(transcript)


# Now we can write it out to a file.
with open('your_filename.json', 'w', encoding='utf-8') as json_file:
    json_file.write(json_formatted)

# Now should have a new JSON file that you can easily read back into Python.
```

**Passing extra keyword arguments**

Since JSONFormatter leverages `json.dumps()` you can also forward keyword arguments into `.format_transcript(transcript)` such as making your file output prettier by forwarding the `indent=2` keyword argument.

```python
json_formatted = JSONFormatter().format_transcript(transcript, indent=2)
```

### Custom Formatter Example
You can implement your own formatter class. Just inherit from the `Formatter` base class and ensure you implement the `format_transcript(self, transcript, **kwargs)` and `format_transcripts(self, transcripts, **kwargs)` methods which should ultimately return a string when called on your formatter instance.

```python

class MyCustomFormatter(Formatter):
    def format_transcript(self, transcript, **kwargs):
        # Do your custom work in here, but return a string.
        return 'your processed output data as a string.'

    def format_transcripts(self, transcripts, **kwargs):
        # Do your custom work in here to format a list of transcripts, but return a string.
        return 'your processed output data as a string.'
```

## CLI

Execute the CLI script using the video ids as parameters and the results will be printed out to the command line:  

```  
youtube_transcript_api <first_video_id> <second_video_id> ...  
```  

The CLI also gives you the option to provide a list of preferred languages:  

```  
youtube_transcript_api <first_video_id> <second_video_id> ... --languages de en  
```

You can also specify if you want to exclude automatically generated or manually created subtitles:

```  
youtube_transcript_api <first_video_id> <second_video_id> ... --languages de en --exclude-generated
youtube_transcript_api <first_video_id> <second_video_id> ... --languages de en --exclude-manually-created
```

If you would prefer to write it into a file or pipe it into another application, you can also output the results as json using the following line:  

```  
youtube_transcript_api <first_video_id> <second_video_id> ... --languages de en --format json > transcripts.json
```  

Translating transcripts using the CLI is also possible:

```  
youtube_transcript_api <first_video_id> <second_video_id> ... --languages en --translate de
```  

If you are not sure which languages are available for a given video you can call, to list all available transcripts:

```  
youtube_transcript_api --list-transcripts <first_video_id>
```

If a video's ID starts with a hyphen you'll have to mask the hyphen using `\` to prevent the CLI from mistaking it for a argument name. For example to get the transcript for the video with the ID `-abc123` run:

```
youtube_transcript_api "\-abc123"
```

## Proxy  

You can specify a https proxy, which will be used during the requests to YouTube:

```python  
from youtube_transcript_api import YouTubeTranscriptApi  

YouTubeTranscriptApi.get_transcript(video_id, proxies={"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](https://requests.readthedocs.io/en/latest/user/advanced/#proxies).  

Using the CLI:  

```  
youtube_transcript_api <first_video_id> <second_video_id> --https-proxy https://user:pass@domain:port
```

## 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](https://chrome.google.com/webstore/detail/cookiestxt/njabckikapfpffapmjgojcnbfjonfjfg?hl=en) or the Firefox extension [cookies.txt](https://addons.mozilla.org/en-US/firefox/addon/cookies-txt/).

Once you have that, you can use it with the module to access age-restricted videos' captions like so.

```python  
from youtube_transcript_api import YouTubeTranscriptApi  

YouTubeTranscriptApi.get_transcript(video_id, cookies='/path/to/your/cookies.txt')

YouTubeTranscriptApi.get_transcripts([video_id], cookies='/path/to/your/cookies.txt')
```

Using the CLI:

```
youtube_transcript_api <first_video_id> <second_video_id> --cookies /path/to/your/cookies.txt
```


## Warning  

 This code 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. I will however do my best to make things working again as soon as possible if that happens. So if it stops working, let me know!  

## Donation  

If this project makes you happy by reducing your development time, you can make me happy by treating me to a cup of coffee :)  

[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BAENLEW8VUJ6G&source=url)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jdepoix/youtube-transcript-api",
    "name": "youtube-transcript-api",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "youtube-api subtitles youtube transcripts transcript subtitle youtube-subtitles youtube-transcripts cli",
    "author": "Jonas Depoix",
    "author_email": "jonas.depoix@web.de",
    "download_url": "https://files.pythonhosted.org/packages/a6/e9/82d16b9639bb9fedade810f87ecb18f705591160b5768a79001ac5b99a82/youtube_transcript_api-0.6.2.tar.gz",
    "platform": null,
    "description": "\n# YouTube Transcript/Subtitle API (including automatically generated subtitles and subtitle translations)  \n\n[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BAENLEW8VUJ6G&source=url) [![Build Status](https://travis-ci.com/jdepoix/youtube-transcript-api.svg?branch=master)](https://app.travis-ci.com/jdepoix/youtube-transcript-api) [![Coverage Status](https://coveralls.io/repos/github/jdepoix/youtube-transcript-api/badge.svg?branch=master)](https://coveralls.io/github/jdepoix/youtube-transcript-api?branch=master) [![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](http://opensource.org/licenses/MIT) [![image](https://img.shields.io/pypi/v/youtube-transcript-api.svg)](https://pypi.org/project/youtube-transcript-api/) [![image](https://img.shields.io/pypi/pyversions/youtube-transcript-api.svg)](https://pypi.org/project/youtube-transcript-api/)\n\nThis is a python API which allows you to get the transcript/subtitles for a given YouTube video. It also works for automatically generated subtitles, supports translating subtitles and it does not require a headless browser, like other selenium based solutions do!\n\n## Install\n\nIt is recommended to [install this module by using pip](https://pypi.org/project/youtube-transcript-api/):\n\n```\npip install youtube-transcript-api\n```\n\nIf you want to use it from source, you'll have to install the dependencies manually:\n\n```\npip install -r requirements.txt\n```\n\nYou can either integrate this module [into an existing application](#api), or just use it via an [CLI](#cli).\n\n## API\n\nThe easiest way to get a transcript for a given video is to execute:\n\n```python\nfrom youtube_transcript_api import YouTubeTranscriptApi\n\nYouTubeTranscriptApi.get_transcript(video_id)\n```\n\n> **Note:** By default, this will try to access the English transcript of the video. If your video has a different language, or you are interested in fetching a different language's transcript, please read the section below.\n\nThis will return a list of dictionaries looking somewhat like this:\n\n```python\n[\n    {\n        'text': 'Hey there',\n        'start': 7.58,\n        'duration': 6.13\n    },\n    {\n        'text': 'how are you',\n        'start': 14.08,\n        'duration': 7.58\n    },\n    # ...\n]\n```\n### Retrieve different languages\n\nYou can add the `languages` param if you want to make sure the transcripts are retrieved in your desired language (it defaults to english).\n\n```python\nYouTubeTranscriptApi.get_transcript(video_id, languages=['de', 'en'])\n```\n\nIt'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. If you want to find out which languages are available first, [have a look at `list_transcripts()`](#list-available-transcripts).\n\nIf you only want one language, you still need to format the `languages` argument as a list\n\n```python\nYouTubeTranscriptApi.get_transcript(video_id, languages=['de'])\n```\n### Batch fetching of transcripts\n\nTo get transcripts for a list of video ids you can call:\n\n```python\nYouTubeTranscriptApi.get_transcripts([\"video_id1\", \"video_id2\"], languages=['de', 'en'])\n```\n\n`languages` also is optional here.\n\n### Preserve formatting\n\nYou can also add `preserve_formatting=True` if you'd like to keep HTML formatting elements such as `<i>` (italics) and `<b>` (bold).\n\n```python\nYouTubeTranscriptApi.get_transcripts(video_ids, languages=['de', 'en'], preserve_formatting=True)\n```\n\n### List available transcripts\n\nIf you want to list all transcripts which are available for a given video you can call:\n\n```python\ntranscript_list = YouTubeTranscriptApi.list_transcripts(video_id)\n```\n\nThis will return a `TranscriptList` object  which is iterable and provides methods to filter the list of transcripts for specific languages and types, like:\n\n```python\ntranscript = transcript_list.find_transcript(['de', 'en'])\n```\n\nBy default this module always picks manually created transcripts over automatically created ones, if a transcript in the requested language is available both manually created and generated. The `TranscriptList` allows you to bypass this default behaviour by searching for specific transcript types:\n\n```python\n# filter for manually created transcripts\ntranscript = transcript_list.find_manually_created_transcript(['de', 'en'])\n\n# or automatically generated ones\ntranscript = transcript_list.find_generated_transcript(['de', 'en'])\n```\n\nThe methods `find_generated_transcript`, `find_manually_created_transcript`, `find_transcript` return `Transcript` objects. They contain metadata regarding the transcript:\n\n```python\nprint(\n    transcript.video_id,\n    transcript.language,\n    transcript.language_code,\n    # whether it has been manually created or generated by YouTube\n    transcript.is_generated,\n    # whether this transcript can be translated or not\n    transcript.is_translatable,\n    # a list of languages the transcript can be translated to\n    transcript.translation_languages,\n)\n```\n\nand provide the method, which allows you to fetch the actual transcript data:\n\n```python\ntranscript.fetch()\n```\n\n### Translate transcript\n\nYouTube has a feature which allows you to automatically translate subtitles. This module also makes it possible to access this feature. To do so `Transcript` objects provide a `translate()` method, which returns a new translated `Transcript` object:\n\n```python\ntranscript = transcript_list.find_transcript(['en'])\ntranslated_transcript = transcript.translate('de')\nprint(translated_transcript.fetch())\n```\n\n### By example\n```python\nfrom youtube_transcript_api import YouTubeTranscriptApi\n\n# retrieve the available transcripts\ntranscript_list = YouTubeTranscriptApi.list_transcripts('video_id')\n\n# iterate over all available transcripts\nfor transcript in transcript_list:\n\n    # the Transcript object provides metadata properties\n    print(\n        transcript.video_id,\n        transcript.language,\n        transcript.language_code,\n        # whether it has been manually created or generated by YouTube\n        transcript.is_generated,\n        # whether this transcript can be translated or not\n        transcript.is_translatable,\n        # a list of languages the transcript can be translated to\n        transcript.translation_languages,\n    )\n\n    # fetch the actual transcript data\n    print(transcript.fetch())\n\n    # translating the transcript will return another transcript object\n    print(transcript.translate('en').fetch())\n\n# you can also directly filter for the language you are looking for, using the transcript list\ntranscript = transcript_list.find_transcript(['de', 'en'])  \n\n# or just filter for manually created transcripts  \ntranscript = transcript_list.find_manually_created_transcript(['de', 'en'])  \n\n# or automatically generated ones  \ntranscript = transcript_list.find_generated_transcript(['de', 'en'])\n```\n\n### Using Formatters\nFormatters are meant to be an additional layer of processing of the transcript you pass it. The goal is to convert the transcript from its Python data type into a consistent string of a given \"format\". Such as a basic text (`.txt`) or even formats that have a defined specification such as JSON (`.json`), WebVTT (`.vtt`), SRT (`.srt`), Comma-separated format (`.csv`), etc...\n\nThe `formatters` submodule provides a few basic formatters to wrap around you transcript data in cases where you might want to do something such as output a specific format then write that format to a file. Maybe to backup/store and run another script against at a later time.\n\nWe provided a few subclasses of formatters to use:\n\n- JSONFormatter\n- PrettyPrintFormatter\n- TextFormatter\n- WebVTTFormatter\n- SRTFormatter\n\nHere is how to import from the `formatters` module.\n\n```python\n# the base class to inherit from when creating your own formatter.\nfrom youtube_transcript_api.formatters import Formatter\n\n# some provided subclasses, each outputs a different string format.\nfrom youtube_transcript_api.formatters import JSONFormatter\nfrom youtube_transcript_api.formatters import TextFormatter\nfrom youtube_transcript_api.formatters import WebVTTFormatter\nfrom youtube_transcript_api.formatters import SRTFormatter\n```\n\n### Provided Formatter Example\nLets say we wanted to retrieve a transcript and write that transcript as a JSON file in the same format as the API returned it as. That would look something like this:\n\n```python\n# your_custom_script.py\n\nfrom youtube_transcript_api import YouTubeTranscriptApi\nfrom youtube_transcript_api.formatters import JSONFormatter\n\n# Must be a single transcript.\ntranscript = YouTubeTranscriptApi.get_transcript(video_id)\n\nformatter = JSONFormatter()\n\n# .format_transcript(transcript) turns the transcript into a JSON string.\njson_formatted = formatter.format_transcript(transcript)\n\n\n# Now we can write it out to a file.\nwith open('your_filename.json', 'w', encoding='utf-8') as json_file:\n    json_file.write(json_formatted)\n\n# Now should have a new JSON file that you can easily read back into Python.\n```\n\n**Passing extra keyword arguments**\n\nSince JSONFormatter leverages `json.dumps()` you can also forward keyword arguments into `.format_transcript(transcript)` such as making your file output prettier by forwarding the `indent=2` keyword argument.\n\n```python\njson_formatted = JSONFormatter().format_transcript(transcript, indent=2)\n```\n\n### Custom Formatter Example\nYou can implement your own formatter class. Just inherit from the `Formatter` base class and ensure you implement the `format_transcript(self, transcript, **kwargs)` and `format_transcripts(self, transcripts, **kwargs)` methods which should ultimately return a string when called on your formatter instance.\n\n```python\n\nclass MyCustomFormatter(Formatter):\n    def format_transcript(self, transcript, **kwargs):\n        # Do your custom work in here, but return a string.\n        return 'your processed output data as a string.'\n\n    def format_transcripts(self, transcripts, **kwargs):\n        # Do your custom work in here to format a list of transcripts, but return a string.\n        return 'your processed output data as a string.'\n```\n\n## CLI\n\nExecute the CLI script using the video ids as parameters and the results will be printed out to the command line:  \n\n```  \nyoutube_transcript_api <first_video_id> <second_video_id> ...  \n```  \n\nThe CLI also gives you the option to provide a list of preferred languages:  \n\n```  \nyoutube_transcript_api <first_video_id> <second_video_id> ... --languages de en  \n```\n\nYou can also specify if you want to exclude automatically generated or manually created subtitles:\n\n```  \nyoutube_transcript_api <first_video_id> <second_video_id> ... --languages de en --exclude-generated\nyoutube_transcript_api <first_video_id> <second_video_id> ... --languages de en --exclude-manually-created\n```\n\nIf you would prefer to write it into a file or pipe it into another application, you can also output the results as json using the following line:  \n\n```  \nyoutube_transcript_api <first_video_id> <second_video_id> ... --languages de en --format json > transcripts.json\n```  \n\nTranslating transcripts using the CLI is also possible:\n\n```  \nyoutube_transcript_api <first_video_id> <second_video_id> ... --languages en --translate de\n```  \n\nIf you are not sure which languages are available for a given video you can call, to list all available transcripts:\n\n```  \nyoutube_transcript_api --list-transcripts <first_video_id>\n```\n\nIf a video's ID starts with a hyphen you'll have to mask the hyphen using `\\` to prevent the CLI from mistaking it for a argument name. For example to get the transcript for the video with the ID `-abc123` run:\n\n```\nyoutube_transcript_api \"\\-abc123\"\n```\n\n## Proxy  \n\nYou can specify a https proxy, which will be used during the requests to YouTube:\n\n```python  \nfrom youtube_transcript_api import YouTubeTranscriptApi  \n\nYouTubeTranscriptApi.get_transcript(video_id, proxies={\"https\": \"https://user:pass@domain:port\"})\n```  \n\nAs the `proxies` dict is passed on to the `requests.get(...)` call, it follows the [format used by the requests library](https://requests.readthedocs.io/en/latest/user/advanced/#proxies).  \n\nUsing the CLI:  \n\n```  \nyoutube_transcript_api <first_video_id> <second_video_id> --https-proxy https://user:pass@domain:port\n```\n\n## Cookies\n\nSome 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](https://chrome.google.com/webstore/detail/cookiestxt/njabckikapfpffapmjgojcnbfjonfjfg?hl=en) or the Firefox extension [cookies.txt](https://addons.mozilla.org/en-US/firefox/addon/cookies-txt/).\n\nOnce you have that, you can use it with the module to access age-restricted videos' captions like so.\n\n```python  \nfrom youtube_transcript_api import YouTubeTranscriptApi  \n\nYouTubeTranscriptApi.get_transcript(video_id, cookies='/path/to/your/cookies.txt')\n\nYouTubeTranscriptApi.get_transcripts([video_id], cookies='/path/to/your/cookies.txt')\n```\n\nUsing the CLI:\n\n```\nyoutube_transcript_api <first_video_id> <second_video_id> --cookies /path/to/your/cookies.txt\n```\n\n\n## Warning  \n\n This code 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. I will however do my best to make things working again as soon as possible if that happens. So if it stops working, let me know!  \n\n## Donation  \n\nIf this project makes you happy by reducing your development time, you can make me happy by treating me to a cup of coffee :)  \n\n[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BAENLEW8VUJ6G&source=url)\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "This is an python API which allows you to get the transcripts/subtitles for a given YouTube video. It also works for automatically generated subtitles, supports translating subtitles and it does not require a headless browser, like other selenium based solutions do!",
    "version": "0.6.2",
    "project_urls": {
        "Homepage": "https://github.com/jdepoix/youtube-transcript-api"
    },
    "split_keywords": [
        "youtube-api",
        "subtitles",
        "youtube",
        "transcripts",
        "transcript",
        "subtitle",
        "youtube-subtitles",
        "youtube-transcripts",
        "cli"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52425f57d37d56bdb09722f226ed81cc1bec63942da745aa27266b16b0e16a5d",
                "md5": "d2acbf431a56f9f4012346f03885bd11",
                "sha256": "019dbf265c6a68a0591c513fff25ed5a116ce6525832aefdfb34d4df5567121c"
            },
            "downloads": -1,
            "filename": "youtube_transcript_api-0.6.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d2acbf431a56f9f4012346f03885bd11",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 24207,
            "upload_time": "2023-12-27T13:18:41",
            "upload_time_iso_8601": "2023-12-27T13:18:41.318107Z",
            "url": "https://files.pythonhosted.org/packages/52/42/5f57d37d56bdb09722f226ed81cc1bec63942da745aa27266b16b0e16a5d/youtube_transcript_api-0.6.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6e982d16b9639bb9fedade810f87ecb18f705591160b5768a79001ac5b99a82",
                "md5": "5703dc25b6e1fd65fdad805856ffae2a",
                "sha256": "cad223d7620633cec44f657646bffc8bbc5598bd8e70b1ad2fa8277dec305eb7"
            },
            "downloads": -1,
            "filename": "youtube_transcript_api-0.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5703dc25b6e1fd65fdad805856ffae2a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 24565,
            "upload_time": "2023-12-27T13:18:44",
            "upload_time_iso_8601": "2023-12-27T13:18:44.084290Z",
            "url": "https://files.pythonhosted.org/packages/a6/e9/82d16b9639bb9fedade810f87ecb18f705591160b5768a79001ac5b99a82/youtube_transcript_api-0.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-27 13:18:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jdepoix",
    "github_project": "youtube-transcript-api",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "requirements": [
        {
            "name": "requests",
            "specs": []
        },
        {
            "name": "mock",
            "specs": [
                [
                    "==",
                    "3.0.5"
                ]
            ]
        },
        {
            "name": "httpretty",
            "specs": [
                [
                    "==",
                    "1.1.4"
                ]
            ]
        },
        {
            "name": "coveralls",
            "specs": [
                [
                    "==",
                    "1.11.1"
                ]
            ]
        },
        {
            "name": "coverage",
            "specs": [
                [
                    "==",
                    "5.2.1"
                ]
            ]
        }
    ],
    "lcname": "youtube-transcript-api"
}
        
Elapsed time: 0.21845s