diff options
author | neodarz <neodarz@neodarz.net> | 2019-01-11 23:41:00 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-01-11 23:41:00 +0100 |
commit | c01eb0e3220924c24aabc3ccd282f89f9ed9cb3e (patch) | |
tree | 923bfd3ac6d42a182641f3e67ac9454b32e0ba22 /config.py | |
parent | 82746a2b76e5948333133bfe07c1042af2cd33b7 (diff) | |
download | khanindexer-c01eb0e3220924c24aabc3ccd282f89f9ed9cb3e.tar.xz khanindexer-c01eb0e3220924c24aabc3ccd282f89f9ed9cb3e.zip |
Add first implementation of a database
Diffstat (limited to '')
-rw-r--r-- | config.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config.py b/config.py new file mode 100644 index 0000000..3717715 --- /dev/null +++ b/config.py @@ -0,0 +1,5 @@ +from os import path + +APP_DIR = path.dirname(__file__) + +DATABASE = '%s' % path.join(APP_DIR, 'spider.db') |