mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
5b929f09a2
Also fixes an issue where the downloader didn't mark files that were not downloaded due to the strategy used.
10 lines
387 B
Python
10 lines
387 B
Python
"""
|
|
Synchronizing files from ILIAS instances (https://www.ilias.de/).
|
|
"""
|
|
|
|
from .authenticators import IliasAuthenticator, KitShibbolethAuthenticator
|
|
from .crawler import IliasCrawler, IliasDirectoryFilter
|
|
from .downloader import (IliasDownloader, IliasDownloadInfo,
|
|
IliasDownloadStrategy, download_everything,
|
|
download_modified_or_new)
|