
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
The confget
library parses configuration files (currently INI-style
files only) and allows a program to use the values defined in them.
It provides various options for selecting the variable names and
values to return and the configuration file sections to fetch them from.
The confget
library may also be used as a command-line tool with
the same interface as the C implementation.
The confget
library is fully typed.
The confget.defs
module defines the Config
class that is used to
control the behavior of the various confget
backends. Its main
purpose is to specify the filename and, optionally, the section name for
INI-style files, but other backends may use its fields in different ways.
A Config
object is created using the following parameters:
filename
(str, optional): the name of the file to opensection
(str, default ""): the name of the section within the filesection_specified
(bool, default false): if section
is an empty
string, only fetch variables from the unnamed section at the start of
the file instead of defaulting to the first section in the fileThe confget
library's "ini" backend parses an INI-style configuration
file. Its read_file()
method parses the file and returns a dictionary
of sections and the variables and their values within them:
import confget
cfg = confget.Config([], filename='config.ini')
ini = confget.BACKENDS['ini'](cfg)
data = ini.read_file()
print('Section names: {names}'.format(names=sorted(data.keys())))
print(data['server']['address'])
In some cases it is useful to have default values before the first named section in a file and then override some values in various sections. This may be useful for e.g. host-specific configuration kept in a section with the same name as the host.
The format
module in the confget
library allows, among other
filtering modes, to get the list of variables with a section
overriding the default ones:
from confget import backend, format
cfg = format.FormatConfig(['foo'], filename='config.ini', section='first',
section_override=True)
ini = backend.BACKENDS['ini'](cfg)
data = ini.read_file()
res = format.filter_vars(cfg, data)
assert len(res) == 1, repr(res)
print(res[0].output_full)
cfg = format.FormatConfig(['foo'], filename='config.ini', section='second',
section_override=True)
ini = backend.BACKENDS['ini'](cfg)
data = ini.read_file()
res = format.filter_vars(cfg, data)
assert len(res) == 1, repr(res)
print(res[0].output_full)
See the documentation of the FormatConfig
class and the filter_vars()
function in the confget.format
module for more information and for
a list of the various other filtering modes, all supported when
the library is used as a command-line tool.
Comments: Peter Pentchev roam@ringlet.net
FAQs
Parse configuration files and extract values from them
We found that confget demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.