Skip to main content

Python SDK for Iconik's API

Project description

Pythonik

Pythonik is a comprehensive Python SDK designed for seamless interaction with the Iconik API. It offers a user-friendly interface to access various functionalities of Iconik, making it easier for developers to integrate and manage Iconik assets and metadata within their applications.

Features

  • Easy-to-use methods for accessing Iconik assets and metadata.
  • Robust handling of API authentication and requests.
  • Configurable timeout settings for API interactions.

Installation

You can install Pythonik directly from PyPI:

pip install nsa-pythonik

If you're using Poetry:

poetry add nsa-pythonik

Usage

Get an Asset from Iconik

To retrieve an asset from Iconik, use the following code:

from pythonik.client import PythonikClient
from pythonik.models.assets.assets import Asset
from pythonik.models.base import Response

app_id = secrets.get_secret("app_id")
auth_token = secrets.get_secret("auth_token")
asset_id = secrets.get_secret("asset_id")

client: PythonikClient = PythonikClient(app_id=app_id, auth_token=auth_token, timeout=10)


res: Response = client.assets().get(asset_id)
data: Asset = res.data
data_as_dict = data.model_dump()
data_as_json = data.model_dump_json()

Get Metadata from a View

To get metadata for an asset from a specific view, use the following code:

from pythonik.client import PythonikClient
from pythonik.models.assets.metadata import ViewMetadata
from pythonik.models.base import Response

app_id = secrets.get_secret("app_id")
auth_token = secrets.get_secret("auth_token")

asset_id = 'a31sd2asdf123jasdfq134'
view_id = 'a12sl34s56asdf123jhas2'

client: PythonikClient = PythonikClient(app_id=app_id, auth_token=auth_token, timeout=5)

default_model = ViewMetadata()
# intercept_404 intercepts 404 errors if no metadata is found in view and returns a ViewMetadata model you provide so you can handle the error gracefully
res: Response = client.metadata().get_asset_metadata(asset_id, view_id, intercept_404=default_model)
data: ViewMetadata = res.data
data_as_dict = data.model_dump()
data_as_json = data.model_dump_json()

Checkout the API reference and advanced usage guide to see all you can do with Pythonik.

Publishing to PyPI (for maintainers)

To publish a new version to PyPI please see the release how-to guide.

Using Poetry

This project uses Poetry for dependency management and packaging. Below are instructions on how to work with Poetry, create a Poetry shell, and run tests using pytest.

Setting Up Poetry

First, install Poetry if you haven't already:

Creating a Poetry Shell

To create and activate a Poetry shell, which sets up an isolated virtual environment for your project:

  1. Navigate to your project directory.

  2. Run the following command:

    poetry shell
    

This command will activate a virtual environment managed by Poetry. You can now run Python commands and scripts within this environment.

Install all dependencies including pytest

    poetry install

Running Tests with pytest

To run tests using pytest, follow these steps:

  1. Inside the Poetry shell, run the tests with the following command:

    pytest
    

This will discover and execute all the tests in your project.


By following these steps, you can efficiently manage dependencies, create a virtual environment, and run tests in your Python project using Poetry.

Support

For support, please contact NSA.

Roadmap

Details about upcoming features and enhancements will be added here.

Contributing

Please see the contribution guide for information on how to contribute.

Authors and Acknowledgment

This SDK is developed and maintained by North Shore Automation developers, including Brant Goddard, Prince Duepa, Giovann Wah, and Brandon Dedolph.

Contributors

License

License information will be available soon.

Project Status

Current project status and updates will be posted here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nsa_pythonik-1.0.0.tar.gz (22.9 kB view details)

Uploaded Source

Built Distribution

nsa_pythonik-1.0.0-py3-none-any.whl (34.3 kB view details)

Uploaded Python 3

File details

Details for the file nsa_pythonik-1.0.0.tar.gz.

File metadata

  • Download URL: nsa_pythonik-1.0.0.tar.gz
  • Upload date:
  • Size: 22.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.9.20 Linux/6.5.0-1025-azure

File hashes

Hashes for nsa_pythonik-1.0.0.tar.gz
Algorithm Hash digest
SHA256 19b6753ed277463bb5efb90cb759840006ad87f35d9c066e79a396187988afc0
MD5 611ea2e796bad6275f34dd90e363a471
BLAKE2b-256 a39abd7762f8dd9f2036128d053a9e168cbe56341c67c41eb76654d76d74aef4

See more details on using hashes here.

File details

Details for the file nsa_pythonik-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: nsa_pythonik-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.9.20 Linux/6.5.0-1025-azure

File hashes

Hashes for nsa_pythonik-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2d7437f7664476bbfb4388d86c24937c00021a4a2d9922252dbe1ab26957f4e7
MD5 1baf2f87ee88d492b2a3563e51740a0a
BLAKE2b-256 aa18c9da3cac0b642f58128ebd6f0ba10270cd9e5d9b07cbc2cc44f10de20f72

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page