diff --git a/Lecture/Lecture.pdf b/Lecture/Lecture.pdf new file mode 100644 index 0000000..4d483a0 Binary files /dev/null and b/Lecture/Lecture.pdf differ diff --git a/Lecture/videos/.gitignore b/Lecture/videos/.gitignore new file mode 100644 index 0000000..f9699cd --- /dev/null +++ b/Lecture/videos/.gitignore @@ -0,0 +1 @@ +Recordings/ diff --git a/Lecture/videos/download.py b/Lecture/videos/download.py new file mode 100644 index 0000000..db34c2e --- /dev/null +++ b/Lecture/videos/download.py @@ -0,0 +1,19 @@ +from pathlib import Path + + +def main(): + directory = Path(__file__).resolve().parent + for file in directory.glob("*.flv"): + with file.open() as fp: + line = fp.readline().strip() + if line != "[InternetShortcut]": + raise Exception(f"File {file} is not an internet shortcut!") + url_line = fp.readline().strip() + prefix = "URL=" + if not url_line.startswith(prefix): + raise Exception(f"URL not found!") + url = url_line[len(prefix):] + print(file, url) + +if __name__ == "__main__": + main() diff --git a/multiagentsystem_literature.pdf b/multiagentsystem_literature.pdf new file mode 100644 index 0000000..dee65b1 Binary files /dev/null and b/multiagentsystem_literature.pdf differ