SULKEN commited on
Commit
058f669
·
unverified ·
1 Parent(s): 08752a9

Fix typos.

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -140,10 +140,10 @@ You can also download a complete Youtube playlist:
140
  >>> from pytube import Playlist
141
  >>> pl = Playlist("https://www.youtube.com/watch?v=Edpy1szoG80&list=PL153hDY-y1E00uQtCVCVC8xJ25TYX8yPU")
142
  >>> pl.download_all()
143
- >>> # of if you want to download in a specific path
144
- >>> pl.download_all(download_path)
145
  ```
146
- This will download the highest progressive stream available (generally 720p) from the given playlist. Later more option would be give users flexibility
147
  to choose video resolution.
148
 
149
  Pytube allows you to filter on every property available (see the documentation for the complete list), let's take a look at some of the most useful ones.
 
140
  >>> from pytube import Playlist
141
  >>> pl = Playlist("https://www.youtube.com/watch?v=Edpy1szoG80&list=PL153hDY-y1E00uQtCVCVC8xJ25TYX8yPU")
142
  >>> pl.download_all()
143
+ >>> # or if you want to download in a specific directory
144
+ >>> pl.download_all('/path/to/directory/')
145
  ```
146
+ This will download the highest progressive stream available (generally 720p) from the given playlist. Later more options would be given for user's flexibility
147
  to choose video resolution.
148
 
149
  Pytube allows you to filter on every property available (see the documentation for the complete list), let's take a look at some of the most useful ones.