SciNote Client
SciNote Client is a Python library for interacting with the SciNote API. This library allows you to programmatically manage SciNote inventories, including creating and managing inventories, columns, items, and more.
Installation
You can install the SciNote Client library directly from its official repository using pip:
pip install scinote-client
Alternatively, if you have the source code, you can install the package locally by running:
pip install -e path/to/scinote-client-source
Note: If you already have the official version installed, please uninstall it before proceeding.
Usage
The library requires 2 environment variables to be configured:
SCINOTE_BASE_URL- The API endpointSCINOTE_API_KEY- The API key, generated in the SciNote admin console.
Here's a basic example of how to use the SciNote Client:
import asyncio
from scinote_client.client.api.teams_client import CreateClient
# Initialize the client
teams_client = CreateClient()
# Get a list of teams
teams = asyncio.run(teams_client.get_teams())
for team in teams:
print(team.id)
# Get a list of inventories for a team.
inventories_client = teams_client.inventory_client(teams[0].team_id)
inventories = asyncio.run(inventories_client.get_inventories())
for inventory in inventories:
print(inventory.id)
Documentation
For detailed documentation, please refer to the official documentation.
Release files for scinote-client 0.9.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| scinote_client-0.9.0.tar.gz | 21.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| scinote_client-0.9.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 51.8 kB
Release files / scinote_client-0.9.0.tar.gz
| Download URL | scinote_client-0.9.0.tar.gz |
|---|---|
| Size | 21.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4205a1bedec00293cb605ce985a27aca02b3a02163338f830afc41681552f5b7
|
|
BLAKE2b-256 checksum How to use checksums |
2a18587cc5986c2f42c9a1a24b1a5cf30e89fa2f52c7b318edd738dc51facb40
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / scinote_client-0.9.0-py3-none-any.whl
| Download URL | scinote_client-0.9.0-py3-none-any.whl |
|---|---|
| Size | 30.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
dc6034c9ec7e1d4b4e4e0c3bd7246f1a506adb1185e565e4e8142fe36524f24c
|
|
BLAKE2b-256 checksum How to use checksums |
0a61c18c1f4b64cdd3eb11dd450e18fe03ca2f80ffddbf6715633fa05fa306a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|