Python (Cython) based implementation of ConfigParser based on POSIX and stdlib functions.
Project description
Python (Cython) based implementation of ConfigParser based on POSIX and stdlib functions. Wrapped via Cython, uses POSIX stat and libc stdio functions for read file.
Support converting values in formats:
StrType - force convert to string all values (defaults too).
IntType - convert values to integer (include suffixes ‘K’, ‘M’ and ‘G’ multiples of 1000).
BytesSizeType - convert values to integer size of bytes (include suffixes ‘K’, ‘M’ and ‘G’ multiples of 1024).
BoolType - convert ‘False’, ‘false’, ‘True’ and ‘true’ to valid Python bool type.
IntSecondsType - convert time to seconds. Uses ‘pytimeparse’ python package.
TimedeltaType - convert time to timdelta/relativedelta(if installed). Uses ‘pytimeparse’ python package.
ListType - convert separated by symbol (default is comma) string to list of values.
JsonType - convert json value to python value.
Usage
Install package in your environment:
pip install configparserc
Example code for parse ini-config:
import os
from configparserc import config, tools
class MainSection(config.AppendSection):
"""
Simple section where:
* some_int_key has int value;
* some_bool_key has int value;
* some_list_key has semicolon separated list value;
* some_other_key has int value in bytes.
and all values appends or override defaults.
"""
type_some_int_key = config.IntType()
type_some_bool_key = config.BoolType()
type_some_list_key = config.ListType(separator=';')
type_some_other_key = config.ListType(separator=';')
config = config.ConfigParserC(
# Override section class for section `main`
section_overload={'main': MainSection},
# Set deafults for all sections.
section_defaults={
'main': {
'some_int_key': "123",
'some_bool_key': "false",
'some_list_key': "a;c;d"
}
},
# Allow to use values from environment
# via "{ENVIRONMENT_VAR}" values.
format_kwargs=os.environ.copy()
)
config.parse_files(['/path/to/ini/config', '/other/path/to/ini/config'])
config.parse_text('''
[main]
# Support comments
; in different ini formats.
int_key = 1234
''')
config_as_dict = config.all()
License
The ConfigParserC Project (https://gitlab.com/onegreyonewhite/configparserc) Copyright (C) 2019-2023 Sergey Klyuykov
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for configparserc-2.0.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91f547093813e9fdd882292f6c3166c83379e3f994159c22e69e7e907ad4422b |
|
MD5 | 672d111fc4547622dfbaebd8d65444f5 |
|
BLAKE2b-256 | 06ef464c761c668216e22b9ce19081e9e27f3dd4da07d8825d501329191dbb63 |
Hashes for configparserc-2.0.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d79c4b4575196f3107a260f1ec506a0b733cd866b12cb5e444c56591bf7b43c1 |
|
MD5 | 60cf78ae7e1e342d51aee62552469910 |
|
BLAKE2b-256 | e8b1591bdf8e8d614d278eecd844c0a0322a6be09535021eeb4a15b6aa62a444 |
Hashes for configparserc-2.0.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fbc163e730a4a6f6769565f05ac219dd85ddb1906cca3bd43ec3e8513f676d6 |
|
MD5 | b94823d41b0f439f33f4907aa0fc1c5e |
|
BLAKE2b-256 | 905d358d59ad2a6ffc5e9c9c4a0140923cfea7e281160d62f7f0a57cfc16edd1 |
Hashes for configparserc-2.0.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d9a4166c438701f88341000705889b19d052b6536c9c1018f5eef5db0fc63f3 |
|
MD5 | f8e55df4daf8d194731e4db60dcc09ac |
|
BLAKE2b-256 | dcdfb26156386b301a6a689fb56e38ccfdf0a313ff17107fd96d954654a3008a |
Hashes for configparserc-2.0.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47612d72e577b7c2185f591ece59bb2ac785c1a0b774eedb06b209e0202ff943 |
|
MD5 | 326c65c6dffab1f9c0b4c2dc99228e69 |
|
BLAKE2b-256 | afabb8d7789c719f903755ec925e4411a2fcf84544216a3d350da7aaf2678d8a |