skillfed

lazr.config

Create configuration schemas, and process and validate configurations.

lazr-config v4.0.0 661.0K downloads/30d#5,454 on PyPI
Copyleft license LGPL v3 Active released

What it is and what it does

lazr.config is a configuration management library that lets you define schemas for configuration data and validate configurations against those schemas. It handles the parsing and processing of configuration files, ensuring they conform to a declared structure. The package is built on zope.interface and lazr.delegates, integrating with the Zope ecosystem.

You use it by defining a schema that specifies what configuration keys and values are allowed, then passing configuration data through that schema for validation. It's useful when you need structured, validated configuration rather than ad-hoc parsing of raw config files.

Use it for:

  • Define and enforce a schema for application configuration files to catch errors early.
  • Validate user-supplied configuration data before passing it to application logic.
  • Build configuration management systems that require structured, typed configuration.
  • Parse and validate configuration in tools or frameworks that need strict schema compliance.
  • Integrate configuration validation into Zope-based applications.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

lazr.config lets you define configuration schemas and validate configurations against them, handling parsing and processing of configuration data.

Yes, if you need declarative configuration schema validation. Low install friction, active maintenance, no known vulnerabilities, and copyleft licensing is straightforward for most projects. Install it if your application requires validated, schema-driven configuration; skip it if you're handling simple key-value configs or prefer runtime validation.

Install

lazr-config on PyPI

pip

pip install lazr-config

uv

uv add lazr-config

poetry

poetry add lazr-config

Installing lazr.config

Before you install

Low install friction with a pure-Python wheel distribution. Active maintenance with a recent release 13 days ago. Depends on zope.interface and lazr.delegates, both established ecosystem packages.

License in practice

Licensed under LGPL v3 (copyleft). You may use this package freely, but any modifications you distribute must also be released under LGPL v3 or a compatible license, and you must make source code available to recipients.

Quickstart

pip install lazr-config

from lazr.config import ConfigSchema

schema = ConfigSchema()
# Define and validate configuration

Requires Python 3.8 or later.

Verify before relying

  • Whether the package is actively maintained beyond the recent release (repository metadata unavailable).
  • Real-world usage patterns and what the monthly download volume reflects about adoption.

Package facts

License LGPL v3 (copyleft)
Python support supports the current Python release (>=3.8)
Install friction low — pure-Python wheel
Runtime dependencies 2 — zope.interface, lazr.delegates
Maintenance actively maintained — 13 days since the last release
First released
Downloads 661,030/month — #5,454 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: lazr_config-4.0.0-py3-none-any.whl

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)Operating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9

Tags

configuration schema validationconfig file parsing and validationdeclarative configuration schemasconfiguration processing libraryconfig validation frameworkstructured configuration managementconfiguration schema definition
configuration-managementschema-validation

More Software Development packages