Utility functions to make it easier to work with os.environ
Project description
env utils
This library extends the standard library’s getenv function, allowing you to coerce the return value into a type.
And that’s it.
It’s been released as a library because every project we have includes the same requirements - read in environment variables, coerce them into the correct type.
The problem is that environment variables are always stored as strings, but Python will evaluate any string (even “”) as True if cast to a boolean. This is almost never the desired behaviour. If you set an environment variable to “”, “0” or “False”, you want it to be False.
>>> os.environ['foo'] = "0"
>>> val = os.getenv('foo')
>>> val
"0"
>>> bool(val)
True
env_utils.get_env will coerce the value into the type you require. The package contains basic helper functions that coerce booleans, integers, decimals, floats, dates, lists and dictionaries.
# FOO=0
>>> env_utils.get_env('FOO')
"0"
>>> env_utils.get_bool('FOO')
False
>>> env_utils.get_int('FOO')
0
# FOO=foo,bar
>>> env_utils.get_list('FOO', separator=',')
['foo', 'bar']
# FOO='{"foo": true}'
>>> env_utils.get_dict('FOO')
{'foo': True}
# FOO=2016-11-23
>>> env_utils.get_date('FOO')
datetime.date(2016, 11, 23)
You can supply any function you like to coerce the value, e.g.:
>>> import os
>>> os.getenv('FOO_NAME')
'bob'
>>> class Foo(object):
... def __init__(self, name):
... self.name = name
>>> coerce = lambda x: Foo(x)
>>> import env_utils
>>> foo = env_utils.get_env('FOO_NAME', coerce=coerce)
>>> foo.name
>>> 'bob'
Installation
The library is available at pypi as ‘python-env-utils’, and can installed using pip:
$ pip install python-env-utils
Tests
The tests can be run using tox:
$ tox
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
Built Distribution
File details
Details for the file python-env-utils-0.4.1.tar.gz
.
File metadata
- Download URL: python-env-utils-0.4.1.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6357d9ae024e5039158ce337bafeca662453f41cd7789a4517217c1a9093ce57 |
|
MD5 | d695740e7095b2e1242138a9a9e9da62 |
|
BLAKE2b-256 | 5796c49c675b9a8cfb79b7377bb5e357feafb810dd2831201cde4e499c0a5e52 |
File details
Details for the file python_env_utils-0.4.1-py2-none-any.whl
.
File metadata
- Download URL: python_env_utils-0.4.1-py2-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7706f7a05af68aefba4b142ae8de970016bfee98c03d3de93d5b049fd12a4688 |
|
MD5 | 6b1be03cf922cb0dfe798ef08aa6fc6d |
|
BLAKE2b-256 | d516c39469945067a0b675f2cc0ae6b8e37f68e77d846ae216d05a0f7e7c9323 |