Skip to content

Commit 438dd6e

Browse files
committed
Upgrade to 1.1.8
1 parent fa3d22f commit 438dd6e

File tree

7 files changed

+30
-21
lines changed

7 files changed

+30
-21
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Pyutube Changelog
22

3+
## 1.1.8
4+
5+
- Fix: Cancel the download process.
6+
- Modify: Documentation, and code style that made it easier to understand (using `pylint`).
7+
38
## 1.1.7
49

510
- Added: Display the video size next to the resolution.
@@ -47,7 +52,7 @@
4752

4853
- Edit filename template
4954

50-
the new defult filename template is:
55+
the new default filename template is:
5156
`%name% - %resolution% _-_%video_id%.%ext%`
5257

5358
> Note: This is the only filename template in the moment, we consider to add more in the future. (but not now)

README.md

Lines changed: 23 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This project was inspired by [Utube](https://github.com/omer73364/uTube/) by [om
1717
## Features
1818

1919
- User-friendly CLI interface.
20-
- Download a single YouTube in video format or audio.
20+
- Download a single YouTube video format or audio.
2121
- Download YouTube shorts.
2222
- Download YouTube playlists.
2323

@@ -28,9 +28,9 @@ This project was inspired by [Utube](https://github.com/omer73364/uTube/) by [om
2828
- [x] Supports all available video resolutions.
2929
- [x] Support shorts.
3030
- [x] Supports downloading playlists.
31-
- [ ] Playlists organized into folders by their names.
31+
- [ ] Playlists are organized into folders by their names.
3232
- [ ] GUI app (not yet).
33-
- [ ] Any features that you/I can think of.
33+
- [ ] Are there any features that you/I can think of?
3434

3535
## Upgrade
3636

@@ -42,7 +42,7 @@ pip install --upgrade pyutube
4242

4343
## Installation
4444

45-
Make suer that you have [Python](https://www.python.org) installed. To check if you have it installed, type `python --version` in your terminal. You should see something like `Python 3.x.x`.
45+
Make sure that you have [Python](https://www.python.org) installed. To check if you have it installed, type `python --version` in your terminal. You should see something like `Python 3. x `
4646

4747
### Method 1: Using Pip
4848

@@ -51,7 +51,7 @@ pip install --upgrade pip
5151
pip install pyutube
5252
```
5353

54-
### Method 2: Building the project from source
54+
### Method 2: Building the project from the source
5555

5656
Clone the repository:
5757

@@ -129,7 +129,7 @@ pyutube -v
129129
> Don't forget, the path is optional.
130130
131131
2. Then choose the format of the download, video or audio.
132-
3. Choose the resolution if it is a video you want to download, otherwise choose audio and it will download it all immediately 🔥.
132+
3. Choose the resolution if it is a video you want to download, otherwise, choose audio and it will download it all immediately 🔥.
133133
> It will check all resolutions available in the first video in the playlist, then it will download all of them in the same resolution 👍.
134134
135135
### **- Download shorts, videos, or audio:**
@@ -139,15 +139,15 @@ pyutube -v
139139
> Don't forget, the path is optional.
140140
141141
2. Then choose the format of the download, video or audio.
142-
3. Choose the resolution if it is a video you want to download, otherwise choose audio and it will download it immediately 🔥.
142+
3. Choose the resolution if it is a video you want to download, otherwise, choose audio and it will download it immediately 🔥.
143143

144144
```bash
145145
pyutube cMPnY7EuZvo
146146
pyutube youtu.be/cMPnY7EuZvo
147147
pyutube https://youtube.com/watch?v=cMPnY7EuZvo
148148
```
149149

150-
### **- Download audios immediately:**
150+
### **- Download audio immediately:**
151151

152152
1. `pyutube <YOUTUBE_LINK | VIDEO_ID | SHORT_LINK> [the_download_path*] -a`
153153

@@ -181,17 +181,21 @@ pyutube -f youtu.be/cMPnY7EuZvo
181181
see the video and relax 🎉.
182182

183183
<div style="text-align: center;">
184-
<img src="pyutube/images/image1.png" />
185-
<br />
186-
<br />
187-
<img src="pyutube/images/image2.png" />
188-
<br />
189-
<br />
190-
<img src="pyutube/images/image3.png" />
191-
<br />
192-
<br />
193-
<img src="pyutube/images/image4.png" />
194-
184+
<a href="https://ibb.co/LhT6r3r">
185+
<img src="https://i.ibb.co/WprF0L0/image5.png" alt="image5">
186+
</a>
187+
<a href="https://ibb.co/7ymCS79">
188+
<img src="https://i.ibb.co/h8z9gpq/image4.png" alt="image4">
189+
</a>
190+
<a href="https://ibb.co/9sVDxbh">
191+
<img src="https://i.ibb.co/pJR7HfQ/image3.png" alt="image3">
192+
</a>
193+
<a href="https://ibb.co/Kb6qjmg">
194+
<img src="https://i.ibb.co/sbjwvt4/image2.png" alt="image2">
195+
</a>
196+
<a href="https://ibb.co/0JkdkQy">
197+
<img src="https://i.ibb.co/7yH6Hbt/image1.png" alt="image1">
198+
</a>
195199
</div>
196200

197201
## Contributing

pyutube/images/image1.png

-19.8 KB
Binary file not shown.

pyutube/images/image2.png

-20.3 KB
Binary file not shown.

pyutube/images/image3.png

-31.1 KB
Binary file not shown.

pyutube/images/image4.png

-34.1 KB
Binary file not shown.

pyutube/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from rich.theme import Theme
1515

1616

17-
__version__ = "1.1.7"
17+
__version__ = "1.1.8"
1818
ABORTED_PREFIX = "aborted"
1919
CANCEL_PREFIX = "cancel"
2020

0 commit comments

Comments
 (0)