Skip to main content

A Python port of daemontools' envdir.

Project description

Build Status

This is a Python port of daemontools’ tool envdir.

What?

envdir runs another program with a modified environment according to files in a specified directory.

So for example, imagine a software you want to run on a server but don’t want to leave certain configuration variables embedded in the program’s source code. A common pattern to solve this problem is to use environment variables to separate configuration from code.

envdir allows you to set a series of environment variables at once to simplify maintaing complicated environments, for example in which you have multiple sets of those configuration variables depending on the infrastructure you run your program on (e.g. Windows vs. Linux, Staging vs. Production, Old system vs. New system etc).

Let’s have a look at a typical envdir:

$ tree mysite_env/
mysite_env/
├── DJANGO_SETTINGS_MODULE
├── MYSITE_DEBUG
├── MYSITE_DEPLOY_DIR
├── MYSITE_SECRET_KEY
└── PYTHONSTARTUP

0 directories, 3 files
$ cat mysite_env/DJANGO_SETTINGS_MODULE
mysite.settings
$

As you can see each file has a capitalized name and contains the value of the environment variable to set when running your program. To use it, simply prefix the call to your program with envdir:

$ envdir mysite_env python manage.py runserver

That’s it, nothing more and nothing less. The way you structure your envdir is left to you but can easily match your configuration requirements and integrate with other configuration systems. envdirs contain just files after all.

An interesting summary about why it’s good to store configuration values in environment variables can be found on the 12factor site.

Why?

Because envdir is small enough that it shouldn’t be tied to a bigger software distribution like daemontools that requires a compiler.

Also, this Python port can easily be used on Windows, not only UNIX systems.

Installation

pip install envdir

or:

easy_install envdir

Usage

Command line

Quoting the envdir documentation:

envdir runs another program with environment modified according to files in a specified directory.

Interface:

envdir d child

d is a single argument. child consists of one or more arguments.

envdir sets various environment variables as specified by files in the directory named d. It then runs child.

If d contains a file named s whose first line is t, envdir removes an environment variable named s if one exists, and then adds an environment variable named s with value t. The name s must not contain =. Spaces and tabs at the end of t are removed. Nulls in t are changed to newlines in the environment variable.

If the file s is completely empty (0 bytes long), envdir removes an environment variable named s if one exists, without adding a new variable.

envdir exits 111 if it has trouble reading d, if it runs out of memory for environment variables, or if it cannot run child. Otherwise its exit code is the same as that of child.

Alternatively you can also use the python -m envdir form to call envdir.

Python

To use envdir in a Python file (e.g. Django’s manage.py) you can use:

import envdir
envdir.read()

envdir will try to find an envdir directory next to the file you modified.

It’s also possible to explicitly pass the path to the envdir:

import os
import envdir

envdir.read('/etc/mysite/envdir')

Feedback

Feel free to open tickets at https://github.com/jezdez/envdir/issues. Say thanks at https://www.gittip.com/jezdez/.

Changelog

0.3 (07/30/2013)

  • Catch KeyboardInterrupt exceptions to not show a traceback from envdir but the repsonse from the called command.

  • Allow multiline environment variables. Thanks to Horst Gutmann for the suggestion. This is a departure from daemontools’ standard which only allows the first line of the environment variable file.

0.2.1 (07/11/2013)

  • Fixed python -m envdir

  • Extended README to better describe the purpose

0.2 (07/10/2013)

  • Added ability to use envdir from Python.

0.1 (07/10/2013)

  • Initial release.

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

envdir-0.3.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

envdir-0.3-py2.py3-none-any.whl (8.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file envdir-0.3.tar.gz.

File metadata

  • Download URL: envdir-0.3.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for envdir-0.3.tar.gz
Algorithm Hash digest
SHA256 569aca83a0b668eb98d31631d0c2a107d0fbdf0bb87dbb92ffdde0c605f0fe74
MD5 e107fd354c3d750785a8ecaf0e832b98
BLAKE2b-256 691d504420f1241e90cec5b244092a19c2fe93fd49add9eede3e8fe4184b3223

See more details on using hashes here.

File details

Details for the file envdir-0.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for envdir-0.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 36abb78e05832ca921e27aaa03e467cd283d14a346642f72b8695d6acdb790cc
MD5 d60d3a69530ef90db15ee9a4a32a27f4
BLAKE2b-256 8ee9029c6b4924a010cccb8dc0cfb76a4d961575a42fed3304bcfbde71f08ef8

See more details on using hashes here.

Supported by

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