mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-12 15:50:01 -08:00
21 lines
400 B
Python
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.3.5"
|
|
|
|
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()
|