Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V8 Radikal Güncellemesi #58

Merged
merged 14 commits into from
Jan 1, 2024
16 changes: 7 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "turkanime-cli"
version = "7.1.1"
version = "8.0.0"
description = "Türkanime video oynatıcı ve indirici"
authors = ["Junicchi <[email protected]>"]
readme = "README.md"
Expand All @@ -10,7 +10,6 @@ keywords = ["turkanime","turk","anime","downloader"]

classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -23,13 +22,13 @@ packages = [
]

[tool.poetry.dependencies]
python = ">=3.6,<4"
youtube_dl = ">=2021.0.0"
questionary = "*"
selenium = ">=3.141.0,<4.3.0"
python = ">=3.7,<4"
yt_dlp = "*"
questionary = "*
selenium = ">=4.2.0,<4.3.0"
bs4 = ">=0.0.1"
easygui = ">=0.98.2"
rich = ">=9.5.1"
rich = ">=13.0.0"
requests = "*"
py7zr = "*"

Expand All @@ -41,8 +40,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
# Publish sırasında yapılması gerekenler:
# cp ./turkanime.py turkanime_api/cli/turkanime.py
# turkanime_api/version.py dosyasındaki build, pip olarak değişmeli.
# poetry build; poetry install; poetry publish

turkanime = 'turkanime_api.cli.turkanime:run'
turkanime = 'turkanime_api.cli.__main__:main'
13 changes: 7 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
youtube-dl
questionary
selenium<4.3.0
selenium>=4.2.0,<4.3.0
yt-dlp
bs4
easygui>=0.98.2
rich
pycryptodome
appdirs
py7zr
requests
rich>=13.0.0
easygui
questionary
198 changes: 0 additions & 198 deletions turkanime.py

This file was deleted.

7 changes: 2 additions & 5 deletions turkanime_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
""" TurkAnimu API """
from .anime import AnimeSorgula,Anime
from .players import elementi_bekle
from .tools import gereksinim_kontrol,webdriver_hazirla,prompt_tema,clear,create_progress
from .dosyalar import DosyaManager
from .version import __author__,__version__,__build__,isGuncel,update_type
from .objects import Anime,Bolum,Video
from .webdriver import create_webdriver
Loading