Added MangaPill. Updated to Python 3.14. Improved download performace through async improvments

This commit is contained in:
2026-03-12 14:18:32 +01:00 Verified
parent 9cd15e33fb
commit c6c4396f55
7 changed files with 248 additions and 78 deletions
+3 -4
View File
@@ -1,12 +1,11 @@
from .flamecomics import FlameComics
from .mangapill import Mangapill
from .provider import Provider
PROVIDERS = [
FlameComics,
]
PROVIDERS = [FlameComics, Mangapill]
def parse_provider(session, url) -> Provider | None:
for site in PROVIDERS:
if site.domain() in url:
if site.domain in url:
return site(session, url)