7 lines
185 B
Python
7 lines
185 B
Python
import configparser
|
|
import os
|
|
|
|
def load_config():
|
|
config = configparser.ConfigParser()
|
|
config.read(os.path.join(os.path.dirname(__file__), '..', 'config.ini'))
|
|
return config |