-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
35 lines (27 loc) · 958 Bytes
/
config.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
import configparser
import pandas
def read_db_config(filename='config.ini', section='postgresql'):
"""
Beolvassa a konfigurációs fájlt és visszaadja a kapcsolódási adatokat.
"""
# Create a parser
parser = configparser.ConfigParser()
# Read config file
parser.read(filename)
# Get section, default to database
db_config = {}
if parser.has_section(section):
params = parser.items(section)
for param in params:
db_config[param[0]] = param[1]
else:
raise Exception(f'Section {section} not found in the {filename} file')
return db_config
config = read_db_config()
dbname = config['dbname']
user = config['username']
password = config['password']
host = config['host']
port = config['port']
# Most már ezekkel az adatokkal hozhatod létre a kapcsolatot vagy folytathatod az adatbázisműveleteket.
#Mappa rendszer előkszítése: