Flexible parameter management
Project description
Milieu
======
Milieu allows easy parameter configuration using environment variables or
json files.
Usage Examples
==============
The following code creates a milieu instance that reads environment variables,
then reads the WORKON_HOME variable.
```
>>> import milieu
>>> M = milieu.init()
>>> M.WORKON_HOME
'/Users/andres/.virtualenvs'
```
The following code create a milieu instance from a json file, the reads the
several variables variable:
```
>>> import milieu
>>> M= milieu.init(path='/tmp/file.json')
>>> M.foo
u'fizz'
>>> M.bar
u'buzz'
>>> M.baz
[u'one', u'two', u'three']
```
The json associated to this example is:
```
{
"foo": "fizz",
"bar": "buzz",
"baz": ["one", "two", "three"]
}
```
======
Milieu allows easy parameter configuration using environment variables or
json files.
Usage Examples
==============
The following code creates a milieu instance that reads environment variables,
then reads the WORKON_HOME variable.
```
>>> import milieu
>>> M = milieu.init()
>>> M.WORKON_HOME
'/Users/andres/.virtualenvs'
```
The following code create a milieu instance from a json file, the reads the
several variables variable:
```
>>> import milieu
>>> M= milieu.init(path='/tmp/file.json')
>>> M.foo
u'fizz'
>>> M.bar
u'buzz'
>>> M.baz
[u'one', u'two', u'three']
```
The json associated to this example is:
```
{
"foo": "fizz",
"bar": "buzz",
"baz": ["one", "two", "three"]
}
```
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 unholster.milieu-1.0.0.tar.gz
.
File metadata
- Download URL: unholster.milieu-1.0.0.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b71fbab15099af5737a60558bb76fe466808f95257fe1f62b1adde379c70ebf6 |
|
MD5 | 6e83b63e511890e81eb1b68e34ef9ba5 |
|
BLAKE2b-256 | 7cde495b586407e3d8b605fe1ffba0eea17cc7f041f10e9c3985b37cf8a3ba0b |
File details
Details for the file unholster.milieu-1.0.0-py2.7.egg
.
File metadata
- Download URL: unholster.milieu-1.0.0-py2.7.egg
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afd2361edd5dbc87a2c99119d1eab94370fdfb8b0c2751b0c6602e23c88eabaa |
|
MD5 | 0c79cdbcf4b322b8c0d676e9da4a4538 |
|
BLAKE2b-256 | 5c0242ed4df8f3c57180e7f2df90665d7f7a6284e8de066a3204e32cbdcfe55f |