mirror of
https://github.com/Garmelon/PFERD.git
synced 2025-09-18 01:42:32 +02:00

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)
|