From b91e58c0f89a055eed462db6e5f71a521278d746 Mon Sep 17 00:00:00 2001 From: Henrique Date: Thu, 19 Dec 2024 21:22:56 -0300 Subject: [PATCH] Removed specific version from turbodl lib --- poetry.lock | 51 ++++++++++++++++++++++++++++++++++++++++++++---- pyproject.toml | 2 +- requirements.txt | 2 +- 3 files changed, 49 insertions(+), 6 deletions(-) diff --git a/poetry.lock b/poetry.lock index 7bfdebf..2c9dfcf 100644 --- a/poetry.lock +++ b/poetry.lock @@ -147,6 +147,20 @@ files = [ {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = true +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + [[package]] name = "colorama" version = "0.4.6" @@ -488,6 +502,17 @@ files = [ requests = "*" typing-extensions = "*" +[[package]] +name = "shellingham" +version = "1.5.4" +description = "Tool to Detect Surrounding Shell" +optional = true +python-versions = ">=3.7" +files = [ + {file = "shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686"}, + {file = "shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de"}, +] + [[package]] name = "sniffio" version = "1.3.1" @@ -557,19 +582,37 @@ files = [ [[package]] name = "turbodl" -version = "0.0.1" +version = "0.0.3" description = "An extremely smart and efficient download manager for various cases." optional = true python-versions = "<4.0,>=3.9" files = [ - {file = "turbodl-0.0.1-py3-none-any.whl", hash = "sha256:b26a84f5f91de669ce96ab083b1fa0d6d0c976114e38d38b9f43c65fa7ae0d31"}, - {file = "turbodl-0.0.1.tar.gz", hash = "sha256:d358adf9d224b57d44c73f48cbc5251cec6c2c4904aa41e43e68b62203910e8f"}, + {file = "turbodl-0.0.3-py3-none-any.whl", hash = "sha256:f6aa9e6de2d04264939ee8d6ddad55316671a07a6241e75cdb3932025895c833"}, + {file = "turbodl-0.0.3.tar.gz", hash = "sha256:a10b0b7860c16ba72d8bdcc95d003917f590bdf402d60b07452863b8765c38c7"}, ] [package.dependencies] httpx = "0.28.1" rich = "13.9.4" tenacity = "9.0.0" +typer = "0.15.1" + +[[package]] +name = "typer" +version = "0.15.1" +description = "Typer, build great CLIs. Easy to code. Based on Python type hints." +optional = true +python-versions = ">=3.7" +files = [ + {file = "typer-0.15.1-py3-none-any.whl", hash = "sha256:7994fb7b8155b64d3402518560648446072864beefd44aa2dc36972a5972e847"}, + {file = "typer-0.15.1.tar.gz", hash = "sha256:a0588c0a7fa68a1978a069818657778f86abe6ff5ea6abf472f940a08bfe4f0a"}, +] + +[package.dependencies] +click = ">=8.0.0" +rich = ">=10.11.0" +shellingham = ">=1.3.0" +typing-extensions = ">=3.7.4.3" [[package]] name = "typing-extensions" @@ -628,4 +671,4 @@ youtube = ["httpx", "scrapetube", "turbodl", "yt-dlp"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "f3a3563ebb5bdcbe0ade9c87c5dc68581d918e8ec79b2d9584926c62d85ac5b5" +content-hash = "8521790e53568cc0566689c4a5225cc083d708d412ba8a3120f6fefd2803973d" diff --git a/pyproject.toml b/pyproject.toml index f8357be..03b75fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ classifiers = [ python = "^3.9" httpx = { version = "0.28.1", optional = true } scrapetube = { version = "2.5.1", optional = true } -turbodl = { version = "0.0.1", optional = true } +turbodl = { version = "*", optional = true } yt-dlp = { version = "2024.12.13", optional = true } [tool.poetry.dev-dependencies] diff --git a/requirements.txt b/requirements.txt index ae62be6..86e839a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ httpx == 0.28.1 scrapetube == 2.5.1 -turbodl == 0.0.1 +turbodl yt-dlp == 2024.12.13 \ No newline at end of file