Files
FastAnime/fastanime/__init__.py
2024-09-15 13:29:20 +03:00

21 lines
400 B
Python

import sys
if sys.version_info < (3, 10):
raise ImportError(
"You are using an unsupported version of Python. Only Python versions 3.8 and above are supported by yt-dlp"
) # noqa: F541
__version__ = "v2.5.0"
APP_NAME = "FastAnime"
AUTHOR = "Benex254"
GIT_REPO = "github.com"
REPO = f"{GIT_REPO}/{AUTHOR}/{APP_NAME}"
def FastAnime():
from .cli import run_cli
run_cli()