Update README.md
Browse files
README.md
CHANGED
@@ -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
|
@@ -48,7 +48,7 @@ Finally *pytube* also includes a command-line utility, allowing you to quickly d
|
|
48 |
- Extensively Documented Source Code
|
49 |
- No Third-Party Dependencies
|
50 |
|
51 |
-
|
52 |
|
53 |
Download using pip via pypi.
|
54 |
|
@@ -56,7 +56,7 @@ Download using pip via pypi.
|
|
56 |
$ pip install pytube
|
57 |
```
|
58 |
|
59 |
-
|
60 |
|
61 |
Let's begin with showing how easy it is to download a video with pytube:
|
62 |
|
@@ -213,7 +213,7 @@ Similarly, if your application requires on-download progress logic, pytube expos
|
|
213 |
>>> yt.register_on_progress_callback(show_progress_bar)
|
214 |
```
|
215 |
|
216 |
-
|
217 |
|
218 |
pytube also ships with a tiny cli interface for downloading and probing videos.
|
219 |
|
|
|
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
|
|
|
48 |
- Extensively Documented Source Code
|
49 |
- No Third-Party Dependencies
|
50 |
|
51 |
+
## Installation
|
52 |
|
53 |
Download using pip via pypi.
|
54 |
|
|
|
56 |
$ pip install pytube
|
57 |
```
|
58 |
|
59 |
+
## Getting started
|
60 |
|
61 |
Let's begin with showing how easy it is to download a video with pytube:
|
62 |
|
|
|
213 |
>>> yt.register_on_progress_callback(show_progress_bar)
|
214 |
```
|
215 |
|
216 |
+
## Command-line interface
|
217 |
|
218 |
pytube also ships with a tiny cli interface for downloading and probing videos.
|
219 |
|