langchain/docs/extras/ecosystem/integrations/youtube.mdx
Saurabh Chaturvedi 8f8e8d701e
Fix info about YouTube (#7447)
(Unintentionally mean 😅) nit: YouTube wasn't created by Google, this PR
fixes the mention in docs.
2023-07-10 01:52:55 -04:00

23 lines
637 B
Plaintext

# YouTube
>[YouTube](https://www.youtube.com/) is an online video sharing and social media platform by Google.
> We download the `YouTube` transcripts and video information.
## Installation and Setup
```bash
pip install youtube-transcript-api
pip install pytube
```
See a [usage example](/docs/modules/data_connection/document_loaders/integrations/youtube_transcript.html).
## Document Loader
See a [usage example](/docs/modules/data_connection/document_loaders/integrations/youtube_transcript.html).
```python
from langchain.document_loaders import YoutubeLoader
from langchain.document_loaders import GoogleApiYoutubeLoader
```