Skip to main content

A way to patch configuration files.

Project description

# amani

#About

Amani is a way to patch configuration files.

#Install

pip install amani

#Usage

constants.py

class A:

a = 1
b = []
c = [1, 3, 5]

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'maps',
'USER': 'root',
'PASSWORD': '',
'HOST': '',
'PORT': '3306',
}
}

try:
import amani
g = globals()
amani.patch(__file__, g)
except:
pass


patch_constants.py

PATCHES = [
["A", "a", 2],
["A", "b", ["test"]],
["A", "c", 1, 2**32],
["DATABASES", "default", "USER", "username"],
["DATABASES", "default", "PASSWORD", "pass-WORD"]
]

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

amani-0.0.2.tar.gz (2.0 kB view hashes)

Uploaded Source

Supported by

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