Added MangaPill. Updated to Python 3.14. Improved download performace through async improvments
This commit is contained in:
+3
-4
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user