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
Setup
Retrieve your API key from /sandbox on your Nominal tenant
import nominal as nm
nm.cloud.set_token(...)
Change base URL to staging for dev or a custom URL
import nominal as nm
nm.cloud.set_base_url('STAGING')
nm.cloud.set_base_url('https://nominal.acme.co')
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
r.title = 'my_new__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.33.tar.gz
(246.0 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.33-py3-none-any.whl
(268.7 kB
view details)
File details
Details for the file nominal-0.0.33.tar.gz.
File metadata
- Download URL: nominal-0.0.33.tar.gz
- Upload date:
- Size: 246.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8074004d31c928b364ed5fa293bf8dd2ddbf5c289b3f64655c4f268e01e592e4
|
|
| MD5 |
f71a391630fc2ff67386e3c45b67156c
|
|
| BLAKE2b-256 |
c3e2f8f38c25c9bdfe303a2b4a37f4a31b4734454fe6d3d446b7c1c0c0761f99
|
File details
Details for the file nominal-0.0.33-py3-none-any.whl.
File metadata
- Download URL: nominal-0.0.33-py3-none-any.whl
- Upload date:
- Size: 268.7 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 |
0b1dd84e85b54a48ce146dc1160e61bc784903b02ce8268eb20dc220ef234b78
|
|
| MD5 |
85ba63d77a72c377fa98f6e6698cb65d
|
|
| BLAKE2b-256 |
95c1091e44bb1a50f8e67fa7aaa084e599498cfa8d9791b9f9e55b5ada60f64b
|