Expand system variables Unix style
Project description
expandvars
Expand system variables Unix style
Inspiration
This module is inspired by GNU bash's variable expansion features. It can be used as an alternative to Python's os.path.expandvars function.
A good use case is reading config files with the flexibility of reading values from environment variables using advanced features like returning a default value if some variable is not defined. For example:
[default]
my_secret_access_code = "${ACCESS_CODE:-default_access_code}"
NOTE: Although it copies most of the common behaviours, it doesn't follow it strictly. For example, it doesn't work with arrays.
Usage
from expandvars import expandvars
print(expandvars("$PATH:$HOME/bin:${SOME_UNDEFINED_PATH:-/default/path}"))
# /bin:/sbin:/usr/bin:/usr/sbin:/home/you/bin:/default/path
Examples
For now, refer to the test cases to see how it behaves.
Contributing
To contribute, setup environment following way:
# Clone repo
git clone https://github.com/sayanarijit/expandvars && cd expandvars
# Create virtualenv
virtualenv .venv && source .venv/bin/activate
# Install library in edit mode along with other handy dev tools
pip install -r dev-requirements.txt
- Follow general git guidelines.
- Keep it simple. Use black to format code.
- Test your changes locally by running
pytest
. - If you are familiar with tox, you may want to use it for testing in different python versions.
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 expandvars-0.5.0.tar.gz
.
File metadata
- Download URL: expandvars-0.5.0.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 778f8e806702cd9e86241793501e0bbbe0db23468c9511498902b3a80b00a7a0 |
|
MD5 | 62ec78aa03e587e66159d84aeade50e2 |
|
BLAKE2b-256 | 8659d477cd91c23820e0fea7308570cc2db65bd1b95c3ea975690db132da431e |
File details
Details for the file expandvars-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: expandvars-0.5.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 808f1b25a42fb41e3490cf8c928fefa12e51e2469b530f1d71896893c52d3377 |
|
MD5 | a5bf2adc53919294320318a26c17f601 |
|
BLAKE2b-256 | cde2f9f032e2377fc98fd776bb93d6beefa3cef36611c60aabf92e61b0b7b87e |