From a4193787a21fbd00dff312962e24d39761625cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kn=C3=BCttel?= Date: Fri, 15 Feb 2019 11:09:43 +0100 Subject: [PATCH] added initial work for using mysql --- exam/ex01/cfg.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 exam/ex01/cfg.py diff --git a/exam/ex01/cfg.py b/exam/ex01/cfg.py new file mode 100644 index 0000000..285dab9 --- /dev/null +++ b/exam/ex01/cfg.py @@ -0,0 +1,8 @@ + +config = { + "use_sqlite": False + , "mysql_server": "172.17.0.2" + , "mysql_user": "wikipedia" + , "mysql_password": "wikipediastuff" + , "mysql_database": "wikipedia_link_data" +}