A voila web application from Jupyter Notebook.
Project description
nomad-north-voila
A voila web application from Jupyter Notebook.
This nomad plugin was generated with Cookiecutter along with @nomad's cookiecutter-nomad-plugin template.
Quickstart
This plugin is available in PyPI under the name nomad-north-voila. To install this plugin into a NOMAD Oasis, add the following to your pyproject.toml:
[project.optional-dependencies]
plugins = [
"nomad-north-voila",
...
]
By adding this plugin, the voila NORTH tool will become available in the NORTH tools registry of the NOMAD Oasis.
By including nomad-north-voila plugin, a voila container with a specific image tag (according to the Python package version) will be available in the NORTH tools, but you can also switch to a specific nomad-north-voila image tag or different image using the nomad.yaml configuration file:
plugins:
entry_points:
options:
nomad_north_voila.north_tools.voila:
north_tool:
image: ghcr.io/fairmat-nfdi/nomad-north-voila:<image-tag>
Development
If you want to develop locally this plugin, clone the project and in the plugin folder, create a virtual environment (you can use Python 3.10, 3.11 or 3.12):
git clone https://github.com/FAIRmat-NFDI/nomad-north-voila.git
cd nomad-north-voila
python3.11 -m venv .pyenv
. .pyenv/bin/activate
Make sure to have pip upgraded:
pip install --upgrade pip
We recommend installing uv for fast pip installation of the packages:
pip install uv
Install the nomad-lab package:
uv pip install -e '.[dev]'
Run the tests
You can run locally the tests:
python -m pytest -sv tests
where the -s and -v options toggle the output verbosity.
Our CI/CD pipeline produces a more comprehensive test report using the pytest-cov package. You can generate a local coverage report:
uv pip install pytest-cov
python -m pytest --cov=src tests
Run linting and auto-formatting
We use Ruff for linting and formatting the code. Ruff auto-formatting is also a part of the GitHub workflow actions. You can run locally:
ruff check .
ruff format . --check
Debugging
For interactive debugging of the tests, use pytest with the --pdb flag. We recommend using an IDE for debugging, e.g., VSCode. If that is the case, add the following snippet to your .vscode/launch.json:
{
"configurations": [
{
"name": "<descriptive tag>",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/.pyenv/bin/pytest",
"justMyCode": true,
"env": {
"_PYTEST_RAISE": "1"
},
"args": [
"-sv",
"--pdb",
"<path-to-plugin-tests>",
]
}
]
}
where <path-to-plugin-tests> must be changed to the local path to the test module to be debugged.
The settings configuration file .vscode/settings.json automatically applies the linting and formatting upon saving the modified file.
Documentation on Github pages
To view the documentation locally, install the related packages using:
uv pip install -r requirements_docs.txt
Run the documentation server:
mkdocs serve
Adding this plugin to NOMAD
Currently, NOMAD has two distinct flavors that are relevant depending on your role as an user:
- A NOMAD Oasis: any user with a NOMAD Oasis instance.
- Local NOMAD installation and the source code of NOMAD: internal developers.
Adding this plugin in your NOMAD Oasis
Read the NOMAD plugin documentation for all details on how to deploy the plugin on your NOMAD instance.
Adding this plugin in your local NOMAD installation and the source code of NOMAD
We now recommend using the dedicated nomad-distro-dev repository to simplify the process. Please refer to that repository for detailed instructions.
Template update
We use cruft to update the project based on template changes. To run the check for updates locally, run cruft update in the root of the project. More details see the instructions on cruft website.
Publish note
In our Python package publishing workflow, before building the package, we update the image tag in the NORTHTool entry point to the latest release version of the image (e.g., v0.1.5), and then publish the package to PyPI.
However, the updated image tag in NORTHTool is not pushed back to the GitHub repository. Therefore, the image tag in the GitHub repository always remains set to main, even when you check out a specific release tag. For this reason, we recommend installing the plugin from PyPI, where the entry point always contains the correct image tag corresponding to the release.
If you download a ZIP file of a specific release from GitHub, the image tag in the entry point will still be set to main, which is not correct. In that case, you can either manually update the image tag in the entry point to the correct release version (e.g., v0.1.5), or install the plugin directly from PyPI.
Main contributors
| Name | |
|---|---|
| NOMAD Authors | fairmat@physik.hu-berlin.de |
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 nomad_north_voila-0.1.14.tar.gz.
File metadata
- Download URL: nomad_north_voila-0.1.14.tar.gz
- Upload date:
- Size: 117.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc3394e648582ed80a3182529ee09acae54643eeafa80a5e10c39d83dab153d1
|
|
| MD5 |
0ba7baef803cc088ad803b614e79f061
|
|
| BLAKE2b-256 |
879dd4dc52cf5af7582be78cd66720fe40095b4d99960dc15c1e4a37e4df8c24
|
Provenance
The following attestation bundles were made for nomad_north_voila-0.1.14.tar.gz:
Publisher:
publish.yml on FAIRmat-NFDI/nomad-north-voila
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nomad_north_voila-0.1.14.tar.gz -
Subject digest:
fc3394e648582ed80a3182529ee09acae54643eeafa80a5e10c39d83dab153d1 - Sigstore transparency entry: 1188796205
- Sigstore integration time:
-
Permalink:
FAIRmat-NFDI/nomad-north-voila@72f4c2150b1d0850dcc50579e0aef94b70b7a9cc -
Branch / Tag:
refs/tags/v0.1.14 - Owner: https://github.com/FAIRmat-NFDI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@72f4c2150b1d0850dcc50579e0aef94b70b7a9cc -
Trigger Event:
release
-
Statement type:
File details
Details for the file nomad_north_voila-0.1.14-py3-none-any.whl.
File metadata
- Download URL: nomad_north_voila-0.1.14-py3-none-any.whl
- Upload date:
- Size: 18.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8449603c4f1d151a9a035841ec9d253726598f07dd5fd3cf43167f743aced99e
|
|
| MD5 |
e79b99b52da4fa31efbef7e9a6493617
|
|
| BLAKE2b-256 |
83387027f30ed68956da22cc55b8e436ad6027ee9236294ada756480df2d4d6a
|
Provenance
The following attestation bundles were made for nomad_north_voila-0.1.14-py3-none-any.whl:
Publisher:
publish.yml on FAIRmat-NFDI/nomad-north-voila
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nomad_north_voila-0.1.14-py3-none-any.whl -
Subject digest:
8449603c4f1d151a9a035841ec9d253726598f07dd5fd3cf43167f743aced99e - Sigstore transparency entry: 1188796212
- Sigstore integration time:
-
Permalink:
FAIRmat-NFDI/nomad-north-voila@72f4c2150b1d0850dcc50579e0aef94b70b7a9cc -
Branch / Tag:
refs/tags/v0.1.14 - Owner: https://github.com/FAIRmat-NFDI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@72f4c2150b1d0850dcc50579e0aef94b70b7a9cc -
Trigger Event:
release
-
Statement type: