Document local crawler and auth

This commit is contained in:
Joscha
2021-05-09 01:33:47 +02:00
parent 60cd9873bc
commit f9b2fd60e2
2 changed files with 24 additions and 2 deletions

View File

@ -22,7 +22,7 @@ class LocalCrawler(Crawler):
):
super().__init__(name, config, section)
self._path = section.path()
self._path = config.working_dir / section.path()
async def crawl(self) -> None:
await self._crawl_path(self._path, PurePath())