typos in README fixed

This commit is contained in:
Jonas Depoix 2018-07-03 13:43:05 +02:00
parent 854f0325c7
commit a296cfee80
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ This is an python API which allows you to get the transcripts/subtitles for a gi
It is recommended to install this module by using pip: It is recommended to install this module by using pip:
``` ```
pip install youtube_transcipt_api pip install youtube_transcript_api
``` ```
If you want to use it from source, you'll have to install the dependencies manually: If you want to use it from source, you'll have to install the dependencies manually:
@ -25,7 +25,7 @@ You could either integrate this module into an existing application, or just use
To get a transcript for a given video you can do: To get a transcript for a given video you can do:
```python ```python
from youtube_transcipt_api import YouTubeTranscriptApi from youtube_transcript_api import YouTubeTranscriptApi
YouTubeTranscriptApi.get_transcript(video_id) YouTubeTranscriptApi.get_transcript(video_id)
``` ```