Automate Nominal workflows in Python
Project description
⬖ Nominal
Python client for Nominal test data, storage, & compute
🚧 WIP - API and syntax subject to change
Install
pip3 install nominal --upgrade
Usage
Set your API key
Retrieve your API key from /sandbox on your Nominal tenant
import nominal as nm
nm.set_token(...)
Upload a Dataset (4 lines)
import nominal as nm
from nominal import Ingest, Dataset
dataset = Dataset(nm.data.penguins())
# dataset = Ingest().read_csv('../path/to/your/data.csv')
dataset.upload()
Upload a Run (4 lines)
import nominal as nm
from nominal import Run, Dataset
r = Run(datasets=[Dataset(nm.data.penguins())])
# r = Run(path='../path/to/your/data.csv')
r.upload()
Update metadata of an existing Run (4 lines)
from nominal import Run
r = Run(rid = 'ri.scout.gov-staging.run.ce205f7e-9ef1-4a8b-92ae-11edc77441c6')
r.title = 'my_new_run_title'
r.update()
Compare changes made to a Run locally
from nominal import Run
r = Run(rid = 'ri.scout.gov-staging.run.ce205f7e-9ef1-4a8b-92ae-11edc77441c6')
r.title = 'my_new_run_title'
r.diff()
Apply a Check to a Run
TODO
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
nominal-0.0.29.tar.gz
(18.8 kB
view details)
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
nominal-0.0.29-py3-none-any.whl
(20.6 kB
view details)
File details
Details for the file nominal-0.0.29.tar.gz.
File metadata
- Download URL: nominal-0.0.29.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04496716e99f2938a368eb29e65588bc3aa77ae328d3f9b2b6f6ea149c776a16
|
|
| MD5 |
cba0ba8e21d139457c832fcc7750ba15
|
|
| BLAKE2b-256 |
b06082b29eb840c3a0a36595c6176c98794b2540249958386201c7c22f79646d
|
File details
Details for the file nominal-0.0.29-py3-none-any.whl.
File metadata
- Download URL: nominal-0.0.29-py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffd3a2fe92c3b8501396b6d103919345dad1519dfc91c416cb75fa830003b21c
|
|
| MD5 |
89601cd81adf860ec3cf0bbf33a7a0f3
|
|
| BLAKE2b-256 |
6a8228777dc6873f3a70c668556c58c1e2c7f37eddc57d02ce367d9bc7070e1e
|