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 and Python 3.10 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/archive.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"))
print(client.archive_v1.search().json())

client.archive_v1.search supports all supported 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(os.getenv("CLIENT_ID"), 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-1.7.0.tar.gz (16.8 kB view details)

Uploaded Source

Built Distribution

satellitevu-1.7.0-py3-none-any.whl (23.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: satellitevu-1.7.0.tar.gz
  • Upload date:
  • Size: 16.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for satellitevu-1.7.0.tar.gz
Algorithm Hash digest
SHA256 80e5b7da2801b4c7d1e79094f27755e24bd9a5a6c90b40855d8606cd0c7cfe54
MD5 0bd9f2817fa5a27a98b3a28f4e3aba9e
BLAKE2b-256 1ee4e221be478ec4920225125e44cab6becb2db06dcf3b03aeda772dd3e68151

See more details on using hashes here.

File details

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

File metadata

  • Download URL: satellitevu-1.7.0-py3-none-any.whl
  • Upload date:
  • Size: 23.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for satellitevu-1.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 52d73bf3f552ced1b9bb9352d82018b2884a5b381d49891ae7ebef4f2429da49
MD5 e15fb6a2c972be2b08d9401b9b15d19d
BLAKE2b-256 f8309490bda61be3a2a9684696759e5f4a03617a4be53675c60929261d34f384

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