|
| 1 | +# About this YouTube Downloader |
| 2 | + |
| 3 | +this YouTube Downloader has been written by pytube and tkinter library. |
| 4 | + |
| 5 | +first it takes the number of youtube videos you want to download. |
| 6 | +then it asks you to Enter every one of the links in individual line to store it to a list. |
| 7 | +In third part, it starts Showing you all the details like (Video's Title, Number of views, video's Length) for videos and starts downloading them one by one |
| 8 | +It also shows you all the availabe itags for you to choose what quality you want to download your videos. |
| 9 | + |
| 10 | +## Instructions |
| 11 | + |
| 12 | +1. install pytube library |
| 13 | + To install pytube, run the following command in your terminal: |
| 14 | +``` |
| 15 | +$ pip install pytube |
| 16 | +``` |
| 17 | + ## Get the Source Code |
| 18 | + |
| 19 | + pytube is actively developed on GitHub, where the source is available. |
| 20 | + |
| 21 | + You can either clone the public repository: |
| 22 | + ``` |
| 23 | + $ git clone git://github.com/pytube/pytube.git |
| 24 | + ``` |
| 25 | + Or, download the tarball: |
| 26 | + |
| 27 | + ``` |
| 28 | + $ curl -OL https://github.com/pytube/pytube/tarball/master |
| 29 | + # optionally, zipball is also available (for Windows users). |
| 30 | + ``` |
| 31 | + Once you have a copy of the source, you can embed it in your Python package, or install it into your site-packages by running: |
| 32 | + ``` |
| 33 | + $ cd pytube |
| 34 | + $ python -m pip install . |
| 35 | + ``` |
| 36 | + |
| 37 | +2. install tkinter library |
| 38 | + Tkinter can be installed using pip. The following command is run in the command prompt to install Tkinter. |
| 39 | + ``` |
| 40 | + $ pip install tk |
| 41 | + ``` |
| 42 | + |
| 43 | +3. then you can run the program and see the result |
| 44 | +``` |
| 45 | +$ pyhon3 YouTube_Donlowder.py |
| 46 | +``` |
0 commit comments