-
Notifications
You must be signed in to change notification settings - Fork 12
/
conf.py
39 lines (35 loc) · 900 Bytes
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from typing import Dict, Mapping, Any
from pathlib import Path
credentials: Mapping[str, Mapping[str, Any]] = {
'sql': {'user': '',
'password': '',
'database': '',
'host': 'localhost',
'port': 3306
},
'user': {'user': '',
'password': '',
'database': '',
'host': 'localhost',
'port': 3306,
},
'redis': {'host': 'localhost',
'port': 6379,
'charset': "utf-8",
'decode_responses': False,
},
'mongodb': {'host': 'localhost',
'port': 27017,
},
'googleapi': {'id': '',
'secret': ''},
'bea': {'userid': ''},
'fred': {'api_key': ""}
}
paths: Mapping[str, Any] = {
'images': Path(''),
'taq': Path(''),
'scratch': Path(''),
'downloads': Path(''),
'10X': Path(''),
}