8 lines
140 B
Python
8 lines
140 B
Python
from abc import ABC, abstractclassmethod
|
|
|
|
|
|
class BaseScraper(ABC):
|
|
@abstractclassmethod
|
|
async def fetch_data(self):
|
|
...
|
|
|