diff --git a/example_config.py b/example_config.py new file mode 100644 index 0000000..06b94ef --- /dev/null +++ b/example_config.py @@ -0,0 +1,14 @@ +from pathlib import Path + +from PFERD import Pferd, enable_logging + + +def main(): + enable_logging() + pferd = Pferd(Path(__file__).parent) + + pferd.ilias_kit("DB", "1101554", cookies="ilias_cookies.txt") + + +if __name__ == "__main__": + main()