Skip to main content

Package allow configuration and section's option values of .ini file to be called as attributes, where the section and option are separated by dot notation.

Project description

dotmapini

Package allow configuration and section's option values of .ini file to be called as attributes, where the section and option are separated by dot notation.

The focus is to work with .ini configuration data using dot notation. Just call attributes and get their values in development flow while defining them in single place.

  • No more configuration values in config['section']['option'] style, just config.section.option;
  • Can parse .ini files with dots between section names and convert them as several sections for corresponding values;
  • Parse values and convert them to Python datatypes;
    # Return parsed value datatypes:
    Union[Config, str, bool, int, float, bytes, tuple, list, dict, set, None]
    # Other types as well as Python types that aren't presented correctly in .ini
    # not implemented and will be parsed as string.
    
  • Your config is instance of collections.MutableMapping (dict's like) and have the same features;
  • Support all keyword arguments for configparser.ConfigParser in Config.load(path, **kwargs) method;
  • Less keystroke;
  • No dependencies, only stdlib.

Installation:

pip install dotmapini

Usage:

Imagine you have following .ini configuration file:

# example.ini
[APP]
debug = False

[server]
host = 127.0.0.1
port = 8080

[server.db]
host = localhost
database = test
user = username
password = password

[complex.Python.datatypes]  ; Your complex Python datatype as is
example = [{'key': ({'value', 'value2'}, [True, 1.2, 3])}]

Minimal reproducible example:

from dotmapini import Config


config = Config.load(
    path='/your/path/to/example.ini',
    allow_no_value=True  # keyword for configparser.ConfigParser(...)
    )
print(config.APP.debug)  # => False type bool
print(config.server.host)  # => '127.0.0.1' type str
print(config.server.port)  # => 8080 type int
print(config.server.db.database)  # => 'test' type str
print(config.server.db.username)  # => 'username' type str
print(config.complex.Python.datatypes.example)  # => [{'key': ({'value', 'value2'}, [True, 1.2, 3])}] type list

Of course as always you can do this:

print(config['server']['db']['host'])  # => 'localhost' type str

But for what...

IMPORTANT:

  • Uppercase strings for options will be parsed as lowercase.

    Example:

    [section]
    OPTION = ...
    

    Will be:

    config = Config.load(...)
    config.section.option  # not self.section.OPTION
    
  • Only digits in section's name not allowed.

    Example:

    [section.1.subsection]  ; A digit between dots not allowed as well
    ...
    [2]
    ...
    [3.section]
    ...
    

    Will be:

    config = Config.load(...)  # will raise DigitInSectionNameError
    
  • If you have DEFAULT section it will be added to all other sections thus it can override same named option values.

    Example:

    [DEFAULT]
    option = value
    
    [section]
    option = value2
    

    Will be:

    config = Config.load(...)
    config.section.option = value  # not value2
    
  • Be aware not to memory overflow while represent complex Python datatypes in .ini file.

Most of this stuff is the default behavior of configparser.ConfigParser.

Need to mention:

Q: Why not dotmap?
A: I want to focus to work specifically with .ini/configparser. There is no need to me to create a lot of dict's like objects.
Q: Why not types.SimpleNamesapce?
A: It can instantiate attributes and nothing else, that is not the case here. Class collections.MutableMapping provide more control/isolation when create complex custom dict's like objects, which is focus to work with .ini configuration files and modify receiving values.

LICENSE

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dotmapini-1.0.4.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dotmapini-1.0.4-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file dotmapini-1.0.4.tar.gz.

File metadata

  • Download URL: dotmapini-1.0.4.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.19

File hashes

Hashes for dotmapini-1.0.4.tar.gz
Algorithm Hash digest
SHA256 10a63882f1cd2551e7488df73cf4025fccc29563b044b4df61fc2aecff39284c
MD5 798da7ec6e8bc14bb0302bb988b76030
BLAKE2b-256 aac312f7ff7be39a8585621b9f08d3e0bd50c39102e307f7cfdab0f08928eb92

See more details on using hashes here.

File details

Details for the file dotmapini-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: dotmapini-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 7.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.19

File hashes

Hashes for dotmapini-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 b9341b7af6f1a0fdf4aa043e338eab8ea7f5c17c21dd10bf5dec17b898bfa9b2
MD5 272559b7bd86aa7d9ff1a9b52f297441
BLAKE2b-256 f20e9ec76257a5bd13d2e5bee646ceaca2dcae5d7d97a3cb495d1f8c09ac29d9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page