Package short description.
Project description
Welcome to configirl Documentation
What is configirl
configirl is a single script, pure python, no dependencies, python2.7, 3.4+ compatible, drop in ready python library to help you manage complex config value logic.
from configirl import ConfigClass, Constant, Deriable
class Config(object):
PROJECT_NAME = Constant()
PROJECT_NAME_SLUG = Deriable()
@PROJECT_NAME_SLUG
def get_project_name_slug(self):
return self.PROJECT_NAME.get_value().replace("_", "-")
config = Config(PROJECT_NAME="my_project")
What problem does configirl solve
Devops Engineer has to deal with lots of config and parameters everyday. Some config value are just a constant value, like a integer and a string. Some config value can be derived from other config values, sometimes event requires the context.
There are lots of Devops tools available in the community, such as:
Shell Script for command line tool, automation
Jenkins groovy for CI/CD
Cloudformation for Infrastructure as Code
Terraform for Infrastructure as Code
…
They all using different language and different syntax. The way, and flexibility of managing config value in different tools varies very much! If you have to manage a list of config values, and you are using multiple devops tools in the same project. Allow those tools talk to each other is NOT EASY at all. And the effort to manage config value in certain tools might be very difficult (like CloudFormation).
configirl provides a solution to manage complex logic for config values in an elegant way. Since Python is easy to learn and it is full featured programming language, you got the perfect balance of simplicity and flexibility. To integrate with any Devops tools, you just reference the value from the finalized config JSON file.
Quick Start
Copy configirl.__init__.py to your Devops workspace directory, and rename it as configirl.py. That is for drop in ready.
Create a config-raw.json file put the following content:
{
"PROJECT_NAME": "my_project",
"STAGE": "dev"
}
Create a config.py file, put the following content. Since it is Python2.7, 3.4+ compatible, pure Python, no dependencies, it works everywhere.
from configirl import ConfigClass, Constant, Derivable
class Config(object):
CONFIG_DIR = "your-devops-workspace-dir"
PROJECT_NAME = Constant()
PROJECT_NAME_SLUG = Derivable()
@PROJECT_NAME_SLUG.getter
def get_project_name_slug(self):
return self.PROJECT_NAME.get_value().replace("_", "-")
STAGE = Constant()
ENVIRONMENT_NAME = Derivable()
@PROJECT_NAME_SLUG.getter
def get_environment_name(self):
return "{}-{}".format(
self.PROJECT_NAME_SLUG.get_value(),
self.STAGE.get_value(),
)
config = Config()
config.update_from_raw_json_file()
config.dump_shell_script_json_config_file()
config.dump_cloudformation_json_config_file()
# you can call more custom dump method here
# depends on what other devops tools you are using
Everytime you call python config.py then the ground truth config value in config-raw.json will be parsed. and two more config-final-for-shell-script.json, config-final-for-cloudformation.json will be create. Then you can just reference value from thos xxx-final-xxx.json file.
// content of config-final-for-shell-script.json
{
"PROJECT_NAME": "my_project",
"PROJECT_NAME_SLUG": "my-project",
"STAGE": "dev",
"ENVIRONMENT_NAME": "my-project-dev"
}
// content of config-final-for-cloudformation.json
{
"ProjectName": "my_project",
"ProjectNameSlug": "my-project",
"Stage": "dev",
"EnvironmentName": "my-project-dev"
}
Install
configirl is released on PyPI, so all you need is:
$ pip install configirl
To upgrade to latest version:
$ pip install --upgrade configirl
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 Distribution
File details
Details for the file configirl-0.0.1.tar.gz
.
File metadata
- Download URL: configirl-0.0.1.tar.gz
- Upload date:
- Size: 30.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9c85f56478eb1349e05e63fd2955e889cae43d7ded90523b897bbdee1e60f27 |
|
MD5 | b22efb2b0056f004c54809073e563afb |
|
BLAKE2b-256 | f6cfa81080e8730d0c3e047015b2970f2fec8977de94f114a3b87dc1a2beb116 |
File details
Details for the file configirl-0.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: configirl-0.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 47.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5f16d46e6c8a6c059c798b59eb86cd41cff4f4a9af5a7adfcd0dd275143a1ac |
|
MD5 | 03153d95d348cfaa5c5c96f2526feedb |
|
BLAKE2b-256 | 37891efe5fd6eb03d82bc82496b83626add66a775b45cdc8b57a10e1237931fe |