Restructure crawling and auth related modules

This commit is contained in:
Joscha
2021-05-23 19:16:42 +02:00
parent bbf9f8f130
commit 2fdf24495b
13 changed files with 29 additions and 33 deletions

View File

@ -2,11 +2,9 @@ from typing import Dict, List, Optional
from rich.markup import escape
from .authenticator import Authenticator
from .authenticators import AUTHENTICATORS
from .auth import AUTHENTICATORS, Authenticator
from .config import Config, ConfigOptionError
from .crawler import Crawler, CrawlError
from .crawlers import CRAWLERS
from .crawl import CRAWLERS, Crawler, CrawlError
from .logging import log