mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-13 07:55:05 +02:00
Add FfM (Fachschaft für Mathematik) synchronizer
This commit moves exceptions and some other things into utils.py and renames files according to python's file naming guides (kinda). It also adds a new example config using the new FfM downloader.
This commit is contained in:
parent
5732268084
commit
2034c9d426
7 changed files with 156 additions and 33 deletions
|
|
@ -1,9 +1,14 @@
|
|||
from .IliasAuthenticators import *
|
||||
from .ffm import *
|
||||
from .ilias_authenticators import *
|
||||
from .organizer import *
|
||||
from .utils import *
|
||||
|
||||
__all__ = (
|
||||
IliasAuthenticators.__all__ +
|
||||
organizer.__all__
|
||||
ffm.__all__ +
|
||||
ilias_authenticators.__all__ +
|
||||
organizer.__all__ +
|
||||
utils.__all__ +
|
||||
[]
|
||||
)
|
||||
|
||||
LOG_FORMAT = "[%(levelname)s] %(message)s"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue