init commit
This commit is contained in:
8
scrapers/base.py
Normal file
8
scrapers/base.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from abc import ABC, abstractclassmethod
|
||||
|
||||
|
||||
class BaseScraper(ABC):
|
||||
@abstractclassmethod
|
||||
async def fetch_data(self):
|
||||
...
|
||||
|
||||
Reference in New Issue
Block a user