From b85b559efa934babf2a456943fd93070dd03ef36 Mon Sep 17 00:00:00 2001 From: Benny Date: Fri, 23 Jun 2023 11:08:34 +0200 Subject: [PATCH] bump dependencies --- README.md | 2 +- requirements.txt | 10 +++++----- ytdlbot/config.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6fc16145..b10f6903 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Websites [supported by youtube-dl](https://ytdl-org.github.io/youtube-dl/support Due to limitations on servers and bandwidth, there are some restrictions on this free service. -* Each user is limited to 10 free downloads per 24-hour period +* Each user is limited to 20 free downloads per 24-hour period * there is a maximum of three subscriptions allowed for YouTube channels. If you need more downloads, you can purchase additional tokens. Additionally, you have the option of deploying your diff --git a/requirements.txt b/requirements.txt index 770c808b..4d6b528a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,17 +1,17 @@ pyrogram==1.4.16 tgcrypto==1.2.5 -yt-dlp==2023.3.4 +yt-dlp==2023.6.22 APScheduler==3.10.1 beautifultable==1.1.0 ffmpeg-python==0.2.0 PyMySQL==1.0.3 -celery==5.3.0 +celery==5.3.1 filetype==1.2.0 -flower==1.2.0 +flower==2.0.0 psutil==5.9.5 influxdb==5.3.1 beautifulsoup4==4.12.2 -fakeredis==2.14.1 +fakeredis==2.15.0 supervisor==4.2.5 tgbot-ping==1.0.7 redis==4.5.4 @@ -22,4 +22,4 @@ ffpb==0.4.1 youtube-search-python==1.6.6 token-bucket==0.3.0 coloredlogs==15.0.1 -sentry-sdk==1.25.0 +sentry-sdk==1.26.0 diff --git a/ytdlbot/config.py b/ytdlbot/config.py index e059e381..67200b57 100644 --- a/ytdlbot/config.py +++ b/ytdlbot/config.py @@ -58,7 +58,7 @@ PLAYLIST_SUPPORT = os.getenv("PLAYLIST_SUPPORT", False) ENABLE_ARIA2 = os.getenv("ENABLE_ARIA2", False) -FREE_DOWNLOAD = os.getenv("FREE_DOWNLOAD", 10) +FREE_DOWNLOAD = os.getenv("FREE_DOWNLOAD", 20) TOKEN_PRICE = os.getenv("BUY_UNIT", 20) # one USD=20 credits RATE_LIMIT = os.getenv("RATE_LIMIT", 20)