This library simplifies downloading building characteristics and load curve data from NREL's ResStock and ComStock projects.
Project description
buildstock-fetch
This library simplifies downloading building characteristics and load curve data from NREL's ResStock and ComStock projects.
- Github repository: https://github.com/switchbox-data/buildstock-fetch/
- Documentation: https://switchbox-data.github.io/buildstock-fetch/
- PyPI page*: https://pypi.org/project/buildstock-fetch/
Installing the library
buildstock-fetch is available on PyPI and can be installed via:
pip install buildstock-fetch
or
uv add buildstock-fetch
Using the library
To use the CLI tool in buildstock-fetch run:
bsf
to activate the interactive mode. Alternatively, provide the inputs directly. For example,
bsf --product resstock --release_year 2022 --weather_file tmy3 --release_version 1 --states CA --file_type "hpxml metadata" --upgrade_id "0 1 2" --output_directory ./CA_data
If the above options don't work, try:
python -m buildstock_fetch
For more details about the usage, see Usage
Developing the library
To simplify development, this library uses devcontainers for reproducible development environments and the just command runner for all major tasks.
Available commands are defined in Justfile. To view available them:
just --list
Setting up development environment
This library uses uv for managing python versions, virtual environments, and packages.
However, given the presence of system dependencies, the easiest way to set up the library's develop environment is to use devcontainers. To do so, open up the repo in VSCode, or a VSCode fork like Cursor or Positron.
The editor will auto-detect the presence of the repo's devcontainer (configured in .devcontainer/devcontainer.json). Click "Reopen in Container" to launch the devcontainer.
If you prefer not to use a devcontainer, you can install uv, install the pre-commit hooks, launch the virtualenv, and download the packages (pinned in uv.lock) by running:
./devcontainer/postCreateCommand.sh
just install
Using a system package manager (like brew or apt), you'll also need to manually install just and quarto.
Adding a package
To add a python package to the project:
uv add <package-name>
This replaces pip install <package-name>, and has the effect of adding the package to pyproject.toml, as well as pinning the package version in uv.lock.
To add a package that will only be used as a development tool:
uv add --dev <package-name>
This will update the dev dependency-groups in pyproject.toml, and ensure that the package isn't declared as a run-time dependency of the library itself.
Running code quality checks
We use ruff for linting and code formatting, mypy for type checking, and a series of post-commit hooks for validating YAML, JSON, whitespaces, and so on.
To run code quality checks:
just check
The checks will also be run automatically by Github Actions when opening PRs, merging to main, or creating a new release.
Running tests
Our test are written using pytest and live in tests/. They are checked against multiple python versions using tox.
To run the tests:
just test
Rendering docs
We use mkdocs and mkdocs-material for writing and rendering docs. The docs are written in markdown and live in docs/.
To dynamically render the docs as you develop them:
just docs
To statically render the docs into HTML:
just docs-test
The docs are served by Github Pages out of the gh-pages branch. We do not publish them manually: they are automatically rendered and published by the Github Actions workflow when merging to main.
Releasing the library
To build the package into a wheel file, type:
just build
To publish a release to PyPI using twine:
just publish
To do both in one go:
just build-and-publish
Repository initiated with fpgmaas/cookiecutter-uv.
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 buildstock_fetch-1.3.0.tar.gz.
File metadata
- Download URL: buildstock_fetch-1.3.0.tar.gz
- Upload date:
- Size: 96.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f517d6d09a59fe0842b6c966310cf1170235987e483ff91bde7c44077491fc6e
|
|
| MD5 |
1e9eca9e2dc01f6a7d6ab913df7d904a
|
|
| BLAKE2b-256 |
716d796957d079890ffea42075a53297a8c08625e6a4ea9ed3f2f73d63207df4
|
File details
Details for the file buildstock_fetch-1.3.0-py3-none-any.whl.
File metadata
- Download URL: buildstock_fetch-1.3.0-py3-none-any.whl
- Upload date:
- Size: 99.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e3dbb21a0de483ae845ddb46e40664f8be33336a1a3edf32c4a22940a3995da
|
|
| MD5 |
26350965dcc356192cb1b3c025b41ece
|
|
| BLAKE2b-256 |
ef58c74d24726ca27fc8f4804a36a1735e22bf7c95193e3b67fe9c7225c365c6
|