mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-01 09:40:59 +08:00
17 lines
536 B
Python
17 lines
536 B
Python
from .log import setup_logger, LOG_PATH
|
|
from .config import settings, VERSION
|
|
|
|
|
|
TMDB_API = "32b19d6a05b512190a056fa4e747cbbc"
|
|
DATA_PATH = "data/data.json"
|
|
|
|
|
|
class RSSLink(str):
|
|
def __new__(cls):
|
|
if "://" not in settings.rss_parser.custom_url:
|
|
return f"https://{settings.rss_parser.custom_url}/RSS/MyBangumi?token={settings.rss_parser.token}"
|
|
return f"{settings.rss_parser.custom_url}/RSS/MyBangumi?token={settings.rss_parser.token}"
|
|
|
|
|
|
PLATFORM = "Windows" if "\\" in settings.downloader.path else "Unix"
|