Skip to main content

Client SDK for SatelliteVu's platform APIs

Project description

SatelliteVu SDK for Python

pypi license Twitter LinkedIn

Lightweight API Client SDK for SatelliteVu's Platform APIs, providing authorization handling and convenience methods to interact with the published APIs.

Installation

The package is published to PyPi and can be installed with pip:

pip install satellitevu

Currently Python 3.8, 3.10 and 3.11 are supported.

Usage

A User API Client credential set consisting of an client id and client secret is needed and should be set in your script's environment variables.

Check out the examples provided. They can for example be run locally with

poetry run python ./examples/catalog.py --example=recent

Simple Client Usage

The easiest way to get started is to use the satellitevu.Client class, which needs a client_id and client_secret only:

import os

from satellitevu import Client


client = Client(os.getenv("CLIENT_ID"), os.getenv("CLIENT_SECRET"))
contract_id = os.getenv("CONTRACT_ID")
print(client.catalog_v1.search(contract_id=contract_id).json())

client.catalog_v1.search supports all request body parameters documented in the API docs, with special handling for datetime which is constructed from the optional date_from and date_to parameters and a default result page size limit of 25.

Authentication Handling

The satellitevu.Auth class provides the main interface to retrieve an authorization token required to interact with the API endpoints.

import os

from satellitevu import Auth


auth = Auth(client_id=os.getenv("CLIENT_ID"), client_secret=os.getenv("CLIENT_SECRET"))
print(auth.token())

Thus retrieved token can be used for bearer token authentication in HTTP request Authorization headers.

The Auth class by default uses a file based cache which will store the token in

  • ~/.cache/SatelliteVu on Linux
  • ~/Library/Caches/SatelliteVu on MacOS
  • C:\Documents and Settings\<username>\Local Settings\Application Data\SatelliteVu\Cache on Windows

Other cache implementations must implement the satellitevu.auth.cache.AbstractCache class.

HTTP Client Wrappers

Convenience wrapper classes for common HTTP client implementations are provided as implementations of satellitevu.http.AbstractClient, which provides an request method with an interface similar to requests.request and returning an satellitevu.http.ResponseWrapper instance, where the response object of the underlying implementation is available in the raw property.

Commonly used properties and methods are exposed on both AbstractClient and ResponseWrapper.

  • satellitevu.http.UrllibClient for Python standard lib's urllib
  • satellitevu.http.requests.RequestsSession using requests.Session class
  • satellitevu.http.httpx.HttpxClient using httpx.Client (Todo)

Implementations based on requests and httpx allow setting an instance of the underlying implementation, but will provide a default instance if not.

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

satellitevu-4.13.0.tar.gz (25.9 kB view details)

Uploaded Source

Built Distribution

satellitevu-4.13.0-py3-none-any.whl (35.1 kB view details)

Uploaded Python 3

File details

Details for the file satellitevu-4.13.0.tar.gz.

File metadata

  • Download URL: satellitevu-4.13.0.tar.gz
  • Upload date:
  • Size: 25.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for satellitevu-4.13.0.tar.gz
Algorithm Hash digest
SHA256 40614b145f3710c29f77cae88e6e7d1d6fca6b7be66e02a4969d784d29bae2db
MD5 b03f88fa2e5073820e5b187a49924a16
BLAKE2b-256 746c4703f7d682e8b023fdeb7379ac5d885ce8a53a90cfdd2ab1cb57e5d62686

See more details on using hashes here.

Provenance

The following attestation bundles were made for satellitevu-4.13.0.tar.gz:

Publisher: tag-and-release.yml on SatelliteVu/satellitevu-client-python

Attestations:

File details

Details for the file satellitevu-4.13.0-py3-none-any.whl.

File metadata

  • Download URL: satellitevu-4.13.0-py3-none-any.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for satellitevu-4.13.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f37c68eac6edfc5dd435fd5adc61586a84d95a7d5252bd854d610c0c648939bd
MD5 910c47f564a76987cfb75688f0f450d6
BLAKE2b-256 d128ce59b04c7dd4488febd607575ee964bc32118e4d6c049c5444770b348f0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for satellitevu-4.13.0-py3-none-any.whl:

Publisher: tag-and-release.yml on SatelliteVu/satellitevu-client-python

Attestations:

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