mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
13 lines
317 B
Python
13 lines
317 B
Python
from .config import Config
|
|
from .crawlers import CRAWLERS
|
|
|
|
|
|
class Pferd:
|
|
def __init__(self, config: Config):
|
|
self._config = config
|
|
|
|
async def run(self) -> None:
|
|
print("Bleep bloop 1")
|
|
await CRAWLERS["dummy"]("dummy", self._config._parser["dummy"]).run()
|
|
print("Bleep bloop 2")
|