Skip to content

Commit

Permalink
11.15
Browse files Browse the repository at this point in the history
  • Loading branch information
nichind committed Nov 16, 2024
1 parent 18adfaa commit ab67532
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
4 changes: 0 additions & 4 deletions pybalt/cobalt.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,10 +516,6 @@ def shorten(s: str, additional_len: int = 0) -> str:
]
)
return path.join(path_folder, filename)
# except client_exceptions.ClientConnectorError:
# raise exceptions.ConnectionError(
# "Client connector error. Are you connected to the internet?"
# )
except KeyboardInterrupt:
return

Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def readme():

setup(
name="pybalt",
version="2024.11.14",
version="2024.11.15",
author="nichind",
author_email="[email protected]",
description="Download mediafiles from YouTube, Twitter (X), Instagram, Reddit & more. CLI wrapper and python module for @imputnet's cobalt processing instance api.",
Expand All @@ -20,19 +20,18 @@ def readme():
"aiohttp",
"aiofiles",
"pytube",
'python-dotenv',
"python-dotenv",
],
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
python_requires=">=3.8",
entry_points={
"console_scripts": [
"pybalt=pybalt.__main__:main",
"cobalt=pybalt.__main__:main",
],
},
)

0 comments on commit ab67532

Please sign in to comment.