Implement Crawler and DummyCrawler

This commit is contained in:
Joscha
2021-04-29 13:44:29 +02:00
parent 7e127cd5cc
commit bbc792f9fb
3 changed files with 118 additions and 0 deletions

View File

@ -0,0 +1,5 @@
from .dummy import DummyCrawler
CRAWLERS = {
"dummy": DummyCrawler,
}