mirror of
https://github.com/HyPnoTiiK/stream-fusion.git
synced 2026-07-26 22:22:08 +00:00
- Implemented a new HTML page for managing scheduled tasks in the admin panel. - Added JavaScript functionality for auto-refreshing job statuses and triggering jobs manually. - Enhanced job result display with relative time and duration formatting. - Introduced a toast notification system for user feedback on job actions. fix: update Redis cache key generation to include a prefix - Modified the Redis cache key generation to prepend "search:" to the hashed key for better organization. refactor: improve Yggflix API search functionality - Added an optional parameter to the search_movie method to specify the search type. - Implemented a fallback mechanism to broaden search if initial results are insufficient. chore: enhance Yggflix service with improved result handling - Introduced a threshold for retrying searches with a broader query type based on result ratios. - Increased the limit for sorted results from 50 to 100. feat: add maintenance endpoints for managing expired API and peer keys - Created endpoints to disable expired API keys and peer keys in the admin panel. - Added functionality to clean orphan torrent items based on a specified age. feat: integrate scheduler into the application lifecycle - Initialized a database cleanup scheduler during application startup. - Ensured proper shutdown of the scheduler during application termination.
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
[tool.poetry]
|
|
name = "stream-fusion"
|
|
version = "3.2.0"
|
|
description = "StreamFusion is an advanced plugin for Stremio that significantly enhances its streaming capabilities with debrid service."
|
|
authors = ["LimeDrive <limecat@limedrive.eu>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
fastapi = "^0.111.0"
|
|
uvicorn = "^0.30.1"
|
|
starlette = "^0.37.2"
|
|
requests = "^2.32.3"
|
|
charset-normalizer = "^3.3"
|
|
bencode-py = "^4.0.0"
|
|
jinja2 = "^3.1.4"
|
|
aiocron = "^1.8"
|
|
python-dotenv = "^1.0.1"
|
|
cachetools = "^5.3.3"
|
|
redis = "^5.0.7"
|
|
aiohttp = "^3.9.5"
|
|
gunicorn = "^22.0.0"
|
|
loguru = "^0.7.2"
|
|
stackprinter = "^0.2.12"
|
|
pydantic-settings = "^2.3.4"
|
|
sqlalchemy = {version = "^2.0.31", extras = ["asyncio"]}
|
|
asyncpg = {version = "^0.29.0", extras = ["sa"]}
|
|
aiosqlite = "^0.20.0"
|
|
toml = "^0.10.2"
|
|
jsonpickle = "^3.2.2"
|
|
fastapi-simple-rate-limiter = "^0.0.4"
|
|
itsdangerous = "^2.2.0"
|
|
email-validator = "^2.2.0"
|
|
requests-ratelimiter = "^0.7.0"
|
|
timeout-decorator = "^0.5.0"
|
|
tenacity = "^8.5.0"
|
|
aiohttp-socks = ">=0.10.0"
|
|
tmdbv3api = "^1.9.0"
|
|
rank-torrent-name = "^1.9.0"
|
|
orjson = "^3.10.7"
|
|
alembic = "^1.13.2"
|
|
apscheduler = "^3.10"
|
|
ujson = "^5.10.0"
|
|
cryptography = "^43.0.0"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
mkdocs = "^1.6.1"
|
|
mkdocs-material = "^9.5.36"
|
|
mkdocs-static-i18n = "^1.2.3"
|
|
mkdocs-macros-plugin = "^1.2.0"
|
|
mkdocs-awesome-pages-plugin = "^2.9.3"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|