No project description provided
Project description
The quick summary:
Ozone or trioxide, is an allotrope of Oxygen. It’s found in the higher atmosphere, and can also be smelled after rain. Ozone configuration library is meant to be used when building cloud native applications (or 12 Factor applications).
Usually these application are configured with environment variables. These in turn are constants usually typed as SOME-VARIABLE. To read this in Python you would do this:
>>> import os >>> os.getenv("SHIFTSOME_VARIABLE")
I got tired of this and I want to access SOME-VARIABLE as an attribute, so:
export SOME_VARIABLE=magic >>> from o3 import Config >>> c = Config() >>> c.some_variable magic
Notice, access is done via attribue instead of dictionary lookup.
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
o3-0.4.1.tar.gz
(4.6 kB
view hashes)
Built Distribution
o3-0.4.1-py3-none-any.whl
(5.0 kB
view hashes)