pferd/example_config.py

15 lines
269 B
Python
Raw Normal View History

2020-04-23 11:49:15 +02:00
from pathlib import Path
from PFERD import Pferd, enable_logging
2020-04-23 12:35:58 +02:00
def main() -> None:
2020-04-23 11:49:15 +02:00
enable_logging()
pferd = Pferd(Path(__file__).parent)
2020-04-23 12:35:58 +02:00
pferd.ilias_kit(Path("DB"), "1101554", cookies=Path("ilias_cookies.txt"))
2020-04-23 11:49:15 +02:00
if __name__ == "__main__":
main()