Files
mhdzumair 5343badfaa Remove unoptimized IMDb and TMDB background tasks.
This commit eliminates unused Dramatiq background tasks and related scheduler jobs for processing and updating IMDb and TMDB data.
2024-12-22 22:50:24 +05:30

29 lines
482 B
Python

import asyncio
from db import database
from utils import torrent
# import background actors
# noqa: F401
from mediafusion_scrapy import task
from scrapers import (
tv,
trackers,
helpers,
prowlarr,
feed_scraper,
background_scraper,
scraper_tasks,
)
from streaming_providers import cache_helpers
from utils import validation_helper
async def async_setup():
await torrent.init_best_trackers()
await database.init()
asyncio.run(async_setup())