Skip to main content

Configures sys.path to include hierarchical Python paths

Project description

siteconf

Customizes sys.path based on platform and Python version when Python loads for site-specific configuration.

This sitecustomize.py module plays a crucial role in VFX pipelines by allowing customizations to be applied to the Python environment at startup.

https://docs.python.org/3/library/site.html#module-sitecustomize

Installation

The easiest way to install is with pip:

$ pip install siteconf

Alternatively, to install from the repo follow these steps:

$ git clone https://github.com/rsgalloway/siteconf
$ cd siteconf
$ python setup.py install

Usage

The sitecustomize.py module provides a convenient way to customize the Python environment by executing code before the interpreter begins executing the main script.

Python libraries are resolved in the following order, from most specific to most agnostic:

$ROOT/$ENV/lib/$PLATFORM/python[$PYVERSION]
$ROOT/$ENV/lib/$PLATFORM/python
$ROOT/$ENV/lib/python[$PYVERSION]
$ROOT/$ENV/lib/python

Some defaults have been set for convenience that can be overridden with environment variables.

For example, by default the deployment root is called "tools", the production environment is called "prod" and the development environment is called "dev", so by default on linux sys.path would include:

/mnt/tools/prod/lib/linux/python3
/mnt/tools/prod/lib/linux/python
/mnt/tools/prod/lib/python3
/mnt/tools/prod/lib/python

or on Windows:

X:/tools/prod/lib/win32/python3
X:/tools/prod/lib/win32/python
X:/tools/prod/lib/python3
X:/tools/prod/lib/python

Environment Variables

The following environment variables can be used to customize Python search paths:

Variable Description
$DEPLOY_ROOT override the default deployment path "tools"
$DEV add development environment to the search path
$DEV_ENV override the default development environment name "dev"
$DRIVE_LETTER override the default Windows drive letter name "Z"
$ENV add a custom environment to the search path, e.g. "test"
$PLATFORM override the platform name (win32, linux, osx)
$PROD_ENV override the default production environment name "prod"
$PYVERSION Python version (e.g. 2, 3 or 3.11)
$ROOT Python module deployment path including mount point
$USE_UNC use UNC paths on Windows

Development Environment

To add development versions of Python libs (supercedes prod):

$ export DEV=1

Now, the dev environment takes precedence over prod, but the prod environment is still in sys.path, just lower down in priority, so anything in dev will override anything else:

/mnt/tools/dev/lib/linux/python3
/mnt/tools/dev/lib/linux/python
/mnt/tools/dev/lib/python3
/mnt/tools/dev/lib/python
/mnt/tools/prod/lib/linux/python3
/mnt/tools/prod/lib/linux/python
/mnt/tools/prod/lib/python3
/mnt/tools/prod/lib/python

To add a custom "test" environment to the Python search path (supercedes all others):

$ export ENV="test"

Custom environments can be useful for testing a developer's test environment.

To get an idea how environment variables can be set to customize the Python search path here is an example that includes a custom env "test" and Python version 3.11 on linux:

$ ENV=test DEPLOY_ROOT=path/to/tools PYVERSION=3.11 python sitecustomize.py 
/mnt/path/to/tools/test/lib/linux/python3.11
/mnt/path/to/tools/test/lib/linux/python
/mnt/path/to/tools/test/lib/python3.11
/mnt/path/to/tools/test/lib/python
/mnt/path/to/tools/prod/lib/linux/python3.11
/mnt/path/to/tools/prod/lib/linux/python
/mnt/path/to/tools/prod/lib/python3.11
/mnt/path/to/tools/prod/lib/python

Deployment

A few notes about deployment of Python modules and packages:

  • platform agnostic libs should be deployed to lib
  • platform specific libs should be deployed to lib/$PLATFORM
  • Python version agnostic libs should be deployed to python
  • Python version specific libs should be deployed to python2, python3, python3.11, etc.

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

siteconf-0.1.3.tar.gz (4.7 kB view details)

Uploaded Source

File details

Details for the file siteconf-0.1.3.tar.gz.

File metadata

  • Download URL: siteconf-0.1.3.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.8.10

File hashes

Hashes for siteconf-0.1.3.tar.gz
Algorithm Hash digest
SHA256 4ec09b2f13e4bd0ef4946000f1aaca8c9cca8a3ee0214e1dda28fa1b28605aeb
MD5 0caa07fda2332606fd0fd3e4290d970b
BLAKE2b-256 09dbeb908f78283adbc6e0cceba01c3b6a4c5041cd42e1e6c748ea83719e61eb

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