init commit

This commit is contained in:
2026-04-02 03:00:21 +00:00
commit c7d64e2532

8
scrapers/base.py Normal file
View File

@@ -0,0 +1,8 @@
from abc import ABC, abstractclassmethod
class BaseScraper(ABC):
@abstractclassmethod
async def fetch_data(self):
...