Metadata-Version: 2.1
Name: youtube-transcript-downloader
Version: 0.1.1
Summary: A package for retrieving transcripts from youtube
Home-page: https://github.com/t4skmanag3r/youtube_transcript_downloader
Author: Edvinas Adomaitis
Author-email: edvinasad7@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8.5
Description-Content-Type: text/markdown

# Youtube Transcript Downloader

This is a package for retrieving transcripts from youtube

Developer by Edvinas Adomaitis (c) 2021

## Example of usage

replace placeholder [] with the desired youtube url
```
import youtube_transcript_downloader

url = "[your desired url]"
transcript = youtube_transcript_downloader.get_transcript(url)
```
the function returns a dictionary of { time : text }

printing out the transcript
```
for key, val in transcript.items():
        print(f"{key} : {val}")
```
output:
```
00:05 : text text text
00:10 : text text text
00:15 : text text text
00:20 : text text text
...
```

