mirror of
https://github.com/barkeser2002/offline-db.git
synced 2026-09-25 02:19:59 +03:00
- Initialized 'aniscrap_core' project. - Implemented 'users', 'content', 'billing', 'scraper_module', 'core' apps. - Added models for Anime, Episode, VideoFile (HLS/Encrypted), User, Wallet, etc. - Implemented Celery tasks for Video Encoding (H.265/HLS) and Revenue Distribution. - Integrated Shopier mock payment flow. - Configured Unfold Admin Dashboard. - Refactored Jikan scraper client. - Added 'init_aniscrap' management command. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
9 lines
195 B
Python
9 lines
195 B
Python
import pymysql
|
|
from .celery import app as celery_app
|
|
|
|
# Monkeypatch version to satisfy Django
|
|
pymysql.version_info = (2, 2, 7, "final", 0)
|
|
pymysql.install_as_MySQLdb()
|
|
|
|
__all__ = ('celery_app',)
|