Skip to content

Commit e37764e

Browse files
committed
Using yt_dlp instead of youtube_dl
1 parent d7fe936 commit e37764e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Using pylibzim `3.1.0`
1313
- ZIM metadata check now allows multiple values (comma-separated) for `Language`
14+
- Using `yt_dlp` instead of `youtube_dl`
1415

1516
### Removed
1617

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ beautifulsoup4>=4.9.3,<4.10
99
lxml>=4.6.3,<4.10
1010
optimize-images>=1.3.6,<1.6
1111
# youtube-dl should be updated as frequently as possible
12-
youtube_dl
12+
yt-dlp

src/zimscraperlib/download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from typing import Dict, Optional, Union
1010

1111
import requests
12-
import youtube_dl
12+
import yt_dlp as youtube_dl
1313

1414
from . import logger
1515

0 commit comments

Comments
 (0)