Skip to content

Commit aa6310b

Browse files
committed
Updated Readme
1 parent c55bed1 commit aa6310b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Pytube is a lightweight and dependency-free Python library designed for fetching videos from the internet.
1+
Pytube is a lightweight and dependency-free Python library designed for fetching videos from the internet. It simplifies the process of downloading videos, particularly from YouTube.
22
Installation:
33

44
To install pytube via pip, follow these steps:
@@ -7,7 +7,6 @@ Open your command prompt or terminal as an administrator.
77
Execute the following command:
88
bash
99
Copy code
10-
1110
```BASH
1211
pip install pytube
1312
```
@@ -19,10 +18,13 @@ Pytube enhances the ease of video downloads by providing a straightforward inter
1918

2019
Import pytube: Begin by importing the pytube library into your Python script.
2120

22-
Create a YouTube Object: Construct a YouTube object by passing the URL of the video you want to download as a parameter. This object will serve as your entry point for accessing video information and initiating downloads.
21+
Create a YouTube Object:
22+
Construct a YouTube object by passing the URL of the video you want to download as a parameter. This object will serve as your entry point for accessing video information and initiating downloads.
2323

24-
Retrieve Video Details: Use the YouTube object to gather information about the video, such as its available resolutions and file extensions. This step allows you to choose the quality and format of the downloaded video.
24+
Retrieve Video Details:
25+
Use the YouTube object to gather information about the video, such as its available resolutions and file extensions. This step allows you to choose the quality and format of the downloaded video.
2526

26-
Download the Video: Finally, download the video by invoking the appropriate method provided by the YouTube object. You have the option to specify a custom name for the downloaded file if you prefer; otherwise, the original filename will be used.
27+
Download the Video:
28+
Finally, download the video by invoking the appropriate method provided by the YouTube object. You have the option to specify a custom name for the downloaded file if you prefer; otherwise, the original filename will be used.
2729

2830
Now, you can proceed with writing and implementing your Python code to download your favorite videos from YouTube using the pytube library. This library streamlines the process and makes it convenient to fetch videos from the internet

0 commit comments

Comments
 (0)