No project description provided
Project description
Bluprint
Bluprint is a command line utility for creating data science project templates, allowing R and Jupyter notebooks seamless access to configuration, data and shared code in this type of structure:
my_project ├── conf │ └── data.yaml # YAML config with data paths ├── data # Store smaller data │ ├── emailed │ │ └── messy.xlsx │ └── user_processed.csv ├── notebooks # Notebooks │ └── process.ipynb └── my_project # Local Python package used by my_project └── shared_code.py
Configuration conf/data.yaml contains either absolute paths or paths relative to the my_project/data/:
emailed:
messy: 'emailed/messy.xlsx'
user:
processed: 'user_processed.csv'
Notebooks can then easily import myproject.shared_code and file paths:
from bluprint.config import load_data_yaml
data = load_data_yaml() # By default loads conf/data.yaml
# Load data in a portable manner
import pandas as pd
messy_df = pd.read_xlsx(data.emailed.messy)
extras_df = pd.read_xlsx(data.remote.extras)
# Load shared code functions as Python modules
# in any notebook anywhere in this project.
from my_project.shared_code import transform_data
transformed_df = transform_data(messy_df, extras_df)
# Save output
transformed_df.to_csv(data.user.processed)
For a working demonstration of a shareable project see https://github.com/igor-sb/bluprint-demo/.
Features
Write portable notebooks by separating code from configuration - file paths are in YAML configs, loaded with load_data_yaml() and load_config_yaml()
Import packaged code as Python modules
Packaged code can be shared across different projects with pip install
Use both Python and R notebooks in a single project (see Python/R projects)
Share entire projects by copying a project directory and running uv venv && uv sync
Works with common data science IDEs (RStudio, VSCode), notebook tools for linting (nbqa), notebook version control (nbstripout) or workflows (Ploomber)
Documentation
Full documentation available at: https://igor-sb.github.io/bluprint/.
Installation
Install uv and run uv tool install bluprint.
For R projects, renv R package is required for creating Bluprint projects with R support.
References
Bluprint integrates:
Bluprint is inspired by these resources:
License
Bluprint is released under MIT license.
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 bluprint-0.4.2.tar.gz
.
File metadata
- Download URL: bluprint-0.4.2.tar.gz
- Upload date:
- Size: 418.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f2064a96665e41133503b26829afb90e45e0db1b2fbe0afda2659ec7cfe86b5 |
|
MD5 | a62ab070fb368725cfe34914bbf4b8ae |
|
BLAKE2b-256 | 8306af6c3b7188192b05171c5aaa5a5d31bef2d424be4626e1cdc80b74a23e98 |
File details
Details for the file bluprint-0.4.2-py3-none-any.whl
.
File metadata
- Download URL: bluprint-0.4.2-py3-none-any.whl
- Upload date:
- Size: 21.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ca0b2d6848796ee687b7a730b4d32cf181f769f7dfb3fdfc8faba1b436c6802 |
|
MD5 | 40f10ee578cbd4df247152ccbdbc34f8 |
|
BLAKE2b-256 | 415ca310eb6bb1d05f7319ffd4a8291085ea3bfc6de01a4f64309a3777a01cfa |