Skip to main content

Expand system variables Unix style

Project description

expandvars

Expand system variables Unix style

PyPI version codecov

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}"
my_important_variable = "${IMPORTANT_VARIABLE:?}"
my_updated_path = "$PATH:$HOME/.bin"
my_process_id = "$$"
my_nested_variable = "${!NESTED}"

NOTE: Although this module copies most of the common behaviours of bash, it doesn't follow bash 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.

TIPs

nounset=True

If you want to enable strict parsing by default, (similar to set -u / set -o nounset in bash), pass nounset=True.

# All the variables must be defined.
expandvars("$VAR1:${VAR2}:$VAR3", nounset=True)

# Raises UnboundVariable error.

NOTE: Another way is to use the ${VAR?} or ${VAR:?} syntax. See the examples in tests.

EXPANDVARS_RECOVER_NULL="foo"

If you want to temporarily disable strict parsing both for nounset=True and the ${VAR:?} syntax, set environment variable EXPANDVARS_RECOVER_NULL=somevalue. This helps with certain use cases where you need to temporarily disable strict parsing of critical env vars, e.g. in testing environment, without modifying the code.

e.g.

EXPANDVARS_RECOVER_NULL=foo myapp --config production.ini && echo "All fine."

WARNING: Try to avoid export EXPANDVARS_RECOVER_NULL because that will disable strict parsing permanently until you log out.

Customization

You can customize the variable symbol and data used for the expansion by using the more general expand function.

from expandvars import expand

print(expand("%PATH:$HOME/bin:%{SOME_UNDEFINED_PATH:-/default/path}", environ={"PATH": "/example"}, var_symbol="%"))
# /example:$HOME/bin:/default/path

Contributing

To contribute, setup environment following way:

First you need to install poetry.

Then

# Clone repo
git clone https://github.com/sayanarijit/expandvars && cd expandvars

# Install poetry dependencies
poetry install
  • Follow general git guidelines.
  • Keep it simple. Run poetry run black to auto format the code.
  • Test your changes locally by running poetry run pytest (pass --cov --cov-report html for browsable coverage report).
  • If you are familiar with tox, you may want to use it for testing in different python versions.

Alternatives

  • environs - simplified environment variable parsing.

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

expandvars-0.8.0.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

expandvars-0.8.0-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file expandvars-0.8.0.tar.gz.

File metadata

  • Download URL: expandvars-0.8.0.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.9.9 Linux/5.15.25-1-MANJARO

File hashes

Hashes for expandvars-0.8.0.tar.gz
Algorithm Hash digest
SHA256 a9634cb652bd7395999cbe9021acbc3735fc753191679bf23c7e5f0e8fa6764f
MD5 79f7895ca9c4b17477d8bbf612af4deb
BLAKE2b-256 3f95e334f9a24445f5fb0467842b1dcdd0e3b2f7393206fd517313f157358c1b

See more details on using hashes here.

File details

Details for the file expandvars-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: expandvars-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.9.9 Linux/5.15.25-1-MANJARO

File hashes

Hashes for expandvars-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9e692551ae3debc4094ef0d81196319782843cbaecc29c4b71c35e1611c42570
MD5 6f1ede8483a7c8909448964538925560
BLAKE2b-256 73f7dd38a7b0f1c029b9006f6926be643d7dfa89a0328754f471905f3d825cd3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page