mirror of
https://github.com/RoyalnetworkTR/turkanime-client.git
synced 2026-09-25 01:39:54 +03:00
- Updated JikanCache and JikanClient classes to use Optional types for parameters. - Improved error handling and dynamic video ID fetching in animecix.py. - Removed unused Animely adapter and adjusted provider priorities. - Cleaned up adapter.py by removing the SearchEngine class. - Enhanced error handling and cookie management in tranime.py. - Added direct search functionality in tranime.py to improve anime search results. - Updated title matching logic in title_matching.py to use Optional types. - Bumped version to 9.4.9.0.
8 lines
195 B
Python
8 lines
195 B
Python
"""GUI modülü."""
|
|
from turkanime_api.version import __version__ as APP_VERSION
|
|
|
|
try:
|
|
from turkanime_api.gui.update_manager import UpdateManager
|
|
except ImportError:
|
|
UpdateManager = None
|