PDF_reader / config.py
Echo9k's picture
reorganized structure
73683aa
raw
history blame contribute delete
184 Bytes
# config.py
import yaml
def load_config(config_path="config.yaml"):
with open(config_path, "r") as f:
config = yaml.safe_load(f)
return config
config = load_config()