Update README.md
Browse files
README.md
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
# pytube
|
16 |
*pytube* is a lightweight, dependency-free Python library (and command-line utility) for downloading YouTube Videos.
|
17 |
|
18 |
-
|
19 |
YouTube is the most popular video-sharing platform in the world and as a hacker you may encounter a situation where you want to script something to download videos. For this I present to you *pytube*.
|
20 |
|
21 |
*pytube* is a lightweight library written in Python. It has no third party dependencies and aims to be highly reliable.
|
@@ -24,7 +24,7 @@ YouTube is the most popular video-sharing platform in the world and as a hacker
|
|
24 |
|
25 |
Finally *pytube* also includes a command-line utility, allowing you to quickly download videos right from terminal.
|
26 |
|
27 |
-
|
28 |
|
29 |
```python
|
30 |
>>> YouTube('https://youtu.be/9bZkp7q19f0').streams.first().download()
|
@@ -37,7 +37,7 @@ Finally *pytube* also includes a command-line utility, allowing you to quickly d
|
|
37 |
... .download()
|
38 |
```
|
39 |
|
40 |
-
|
41 |
- Support for Both Progressive & DASH Streams
|
42 |
- Support for downloading complete playlist
|
43 |
- Easily Register ``on_download_progress`` & ``on_download_complete`` callbacks
|
|
|
15 |
# pytube
|
16 |
*pytube* is a lightweight, dependency-free Python library (and command-line utility) for downloading YouTube Videos.
|
17 |
|
18 |
+
## Description
|
19 |
YouTube is the most popular video-sharing platform in the world and as a hacker you may encounter a situation where you want to script something to download videos. For this I present to you *pytube*.
|
20 |
|
21 |
*pytube* is a lightweight library written in Python. It has no third party dependencies and aims to be highly reliable.
|
|
|
24 |
|
25 |
Finally *pytube* also includes a command-line utility, allowing you to quickly download videos right from terminal.
|
26 |
|
27 |
+
### Behold, a perfect balance of simplicity versus flexibility:
|
28 |
|
29 |
```python
|
30 |
>>> YouTube('https://youtu.be/9bZkp7q19f0').streams.first().download()
|
|
|
37 |
... .download()
|
38 |
```
|
39 |
|
40 |
+
### Features
|
41 |
- Support for Both Progressive & DASH Streams
|
42 |
- Support for downloading complete playlist
|
43 |
- Easily Register ``on_download_progress`` & ``on_download_complete`` callbacks
|