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
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 madde 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.24.tar.gz
(9.4 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.24-py3-none-any.whl
(11.5 kB
view details)
File details
Details for the file nominal-0.0.24.tar.gz.
File metadata
- Download URL: nominal-0.0.24.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6772b5416ad9a33f8b950376853e35b9ead8c685076dd4ce72dfd8e7d6bde0d8
|
|
| MD5 |
04cc77784334ad2341c6cc3336ab6f34
|
|
| BLAKE2b-256 |
18ce8f2acb212fc30efc8fc02cf45a897aa47746c53d451cd95eca1057d0fb9c
|
File details
Details for the file nominal-0.0.24-py3-none-any.whl.
File metadata
- Download URL: nominal-0.0.24-py3-none-any.whl
- Upload date:
- Size: 11.5 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 |
2de6a06b758196646882fc800577a73a85ca657af71a123a3ba90bbd0680f404
|
|
| MD5 |
4f06cc7e7e5e9b5970def9429a8ad5f7
|
|
| BLAKE2b-256 |
5901fdc9df9e2f472ae0c18e7314bff283c0a8024989add618d95c500bdccd15
|