
Security News
CISA Extends MITRE Contract as Crisis Accelerates Alternative CVE Coordination Efforts
CISA extended MITRE’s CVE contract by 11 months, avoiding a shutdown but leaving long-term governance and coordination issues unresolved.
A powerful multi-tier configuration management framework that simplifies the definition, access, and synchronization of layered configurations in Python applications.
Think of VSCode's configuration system: you have user settings that apply globally and workspace settings that override them for specific projects. Conftier brings this same intuitive model to your Python frameworks and applications.
For comprehensive guides, examples, and API reference, visit our documentation:
Conftier helps you manage configurations across multiple levels:
Conftier automatically merges these configurations based on priority (project > user > default).
Without Conftier | With Conftier |
---|---|
Manual parsing of multiple config files | Automatic loading and merging |
Type errors discovered at runtime | Validation at load time |
Custom code for merging configs | Smart merging built-in |
Documentation struggles | Schema serves as documentation |
Repetitive boilerplate | Consistent, reusable pattern |
# Basic installation
pip install conftier
# With Pydantic support (recommended)
pip install conftier[pydantic]
from pydantic import BaseModel, Field
from conftier import ConfigManager
class AppConfig(BaseModel):
app_name: str = "MyApp"
debug: bool = False
config_manager = ConfigManager(
config_name="myapp",
config_schema=AppConfig,
auto_create=True
)
# Load the merged configuration
config: AppConfig = config_manager.load()
Conftier shines when:
This project is licensed under the terms of the MIT
license.
See LICENSE for more details.
For more information, please contact: zeeland4work@gmail.com
This project was generated with P3G
FAQs
Multi-level configuration framework
We found that conftier 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
CISA extended MITRE’s CVE contract by 11 months, avoiding a shutdown but leaving long-term governance and coordination issues unresolved.
Product
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.