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
+2 -4
View File
@@ -3,10 +3,8 @@ from abc import ABC, abstractmethod
class Provider(ABC):
@staticmethod
@abstractmethod
def domain() -> str:
pass
domain: str
headers: dict
@abstractmethod
def get_mediainfo(self) -> tuple[dict, list]: