librarystandards.py

changeset 89
d2b277cb948e
child 96
70f8049623ec
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/librarystandards.py	Mon Jun 24 10:13:13 2019 +0300
@@ -0,0 +1,9 @@
+from configparser import ConfigParser
+from pathlib import Path
+from os.path import dirname
+
+ini_path = Path(dirname(__file__)) / 'tests' / 'library-standards.ini'
+library_standards = ConfigParser()
+
+with ini_path.open() as file:
+    library_standards.read_file(file)

mercurial