A Python package that provides a simple way to bootstrap a directory environment variable with the content coming from the distribution package.
Project description
env-dir-bootstrap 1.1.0
A Python library that bootstraps a directory from a distribution package into a path driven by an environment variable.
On first run the target directory is created and the specified package resources are copied into it. Subsequent runs are no-ops when the directory already exists.
Prerequisites
- Python
^3.14 - Poetry
2.x
Installation
poetry add env-dir-bootstrap
Usage
from env_dir_bootstrap import EnvDirBootstrap
# Point MY_APP_DIR at a writable directory path via environment variable.
bootstrapper = EnvDirBootstrap(
env_var="MY_APP_DIR",
resources=["config.yaml", "templates/"],
package="my_app.data",
)
# Create the directory and copy resources once (no-op if it already exists).
bootstrapper.setup()
# Retrieve the resolved Path of the bootstrap directory.
bootstrap_dir = bootstrapper.get_dir()
# Resolve a resource path under the bootstrapped directory.
config_path = bootstrapper.resolve("config.yaml")
Configuration
EnvDirBootstrap is configured through its constructor:
| Parameter | Type | Description |
|---|---|---|
env_var |
str |
Environment variable whose value is the target directory path. |
resources |
Sequence[str] |
File or sub-directory names within package to copy on first bootstrap. |
package |
str |
Fully-qualified name of the package that contains the resources. |
Methods
| Method | Returns | Description |
|---|---|---|
setup() |
None |
Creates the target directory and copies any resources not already present. No-op when the environment variable is unset or when individual resources already exist in the target directory. |
get_dir() |
pathlib.Path |
Returns the resolved bootstrap directory path. When the environment variable is set, returns its value as an absolute Path; otherwise returns the package resource directory path. |
resolve(name) |
pathlib.Path |
Returns the full path to name under the bootstrap directory. Raises FileNotFoundError when the path does not exist (or the package resource is missing when the environment variable is unset). |
Logging is provided by logenrich and configured via logging.ini at the project root. The log file is written to env_dir_bootstrap.log.
Development
Architecture
graph TD
A[Application] -->|instantiates| B[EnvDirBootstrap]
B -->|reads| C[ENV_VAR]
C -->|resolves to| D[Target Directory]
B -->|first run: copies from| E[Distribution Package Resources]
E -->|into| D
B -->|resolve| F[Resource Path]
D -->|contains| F
Install dependencies
poetry install
Run tests
poetry run pytest --cov=env_dir_bootstrap tests --cov-report html
Format and lint
poetry run black env_dir_bootstrap
poetry run pylint env_dir_bootstrap
Publishing to PyPI
Prerequisites
- A PyPI account with an API token.
Configure the token
poetry config pypi-token.pypi <your-token>
Build and publish
poetry publish --build
This builds the source distribution and wheel, then uploads them to PyPI in one step.
Note: PyPI releases are immutable. Once a version is published, it cannot be overwritten.
To fix a mistake, yank the release via the PyPI web UI and publish a new version.
Changelog
Author(s)
Ronaldo Webb — ron@ronella.xyz
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file env_dir_bootstrap-1.1.0.tar.gz.
File metadata
- Download URL: env_dir_bootstrap-1.1.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.4 CPython/3.14.4 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e67bd625789f4d7d1214c13ea032ecaa9f8d6d418df0e58f20124a06814984d
|
|
| MD5 |
48814b808c3eb9cb3f24770317cb7681
|
|
| BLAKE2b-256 |
b59dd414e1b7796bb136b7da7b20ef8636921a186f4eb16b31fe7305a5bd1917
|
File details
Details for the file env_dir_bootstrap-1.1.0-py3-none-any.whl.
File metadata
- Download URL: env_dir_bootstrap-1.1.0-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.4 CPython/3.14.4 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b1cd2dd3e69a8947817fe4853f20c256374573f87d0c3b3d8ca746c874c48c6
|
|
| MD5 |
3bf3a613f4fe115d0bca6440f89b1319
|
|
| BLAKE2b-256 |
118ecb23b4fbe5d3fd69d15dbd2c676a04869de867eec11236ac04766d1e17ba
|