Python Forum
Applications config files / Best practices
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Applications config files / Best practices
#1
Hi there!
I' m newbie in Python applications development.
I'm coding an application that has several modules and I'm looking for the best way to access the configuration file (YAML) from each module without having to read it every time.
Can anybody help me?

Thank you in advance.
--
Adrián E. Córdoba
Reply
#2
If its a user config, save the YAML file in ~/.config/APPNAME/config.yaml and on Windows in %localappdata%\APPNAME\config.yaml.

To get the home path, use pathlib.

Example for Linux and Windows in one function:
import os
import platform
from pathlib import Path

import yaml


def load_config(appname):
    system = platform.system()
    if system == "Windows":
        config = Path.home().joinpath(
            os.environ.get("localappdata"), appname, "config.yaml"
        )
    elif system == "Linux":
        config = Path.home().joinpath(".config", appname, "config.yaml")
    else:
        raise RuntimeError(f"{system} is not supported.")

    with config.open() as fd:
        return yaml.load(fd, yaml.SafeLoader)


config = load_config("YourAppName")
If it should belong to your module and is not a user config, just use a Python file, place it next to your modules and import it, where you need the config. Then yaml is not required. A dependency lesser is good.
aecordoba likes this post
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply
#3
(Oct-22-2024, 07:30 PM)DeaD_EyE Wrote: If it should belong to your module and is not a user config, just use a Python file, place it next to your modules and import it, where you need the config. Then yaml is not required. A dependency lesser is good.
Thank you very much, DeaD_EyE!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Good practices with Python if Pedroski55 1 1,735 Nov-07-2021, 07:48 AM
Last Post: Gribouillis
  Updating a config file [solved] ebolisa 8 3,913 Nov-04-2021, 10:20 AM
Last Post: Gribouillis
  Is there a library for recursive object creation using config objects johsmi96 0 2,316 May-03-2021, 08:09 PM
Last Post: johsmi96
  help with pytesseract.image_to_string(savedImage, config='--psm 11')iamge to string korenron 0 3,428 Apr-29-2021, 10:08 AM
Last Post: korenron
  Opening and closing Mac applications and files Nickd12 5 7,982 Sep-05-2020, 04:39 AM
Last Post: perfringo
  Config file update Olivier74 0 1,927 Aug-18-2020, 03:36 PM
Last Post: Olivier74
  What is the best way to set application-wide config values? ajorona 1 2,546 May-07-2020, 05:03 PM
Last Post: buran
  Config file entry as list versus string? taziuk 2 2,550 Apr-25-2020, 12:01 PM
Last Post: ndc85430
  Internationalization of applications ? JohnnyCoffee 1 2,251 Apr-17-2020, 09:39 PM
Last Post: Larz60+
  Automating Windows GUI applications metro17 4 14,011 Feb-10-2020, 09:46 AM
Last Post: metro17

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020