amsatapi

AMSAT API Client for Python


Keywords
AMSAT, SATELLITE, STATUS, PASSES
License
MIT
Install
pip install amsatapi==0.1

Documentation

Python Client for AMSAT Status and Passes APIs

Usage

from amsat import AmsatApiClient

amsat = AmsatApiClient()

status = amsat.get_sat_status('AO-91', hours=24)
passes = amsat.get_sat_passes('CM85', 'AO-91')

Command-Line Utility

The amsat-cli-py command-line utility is provided for convenience and a quick demonstration of how the API Client works.

Get Status

python amsat-cli.py status -n AO-91 -h 24

Get Passes

python amsat-cli.py passes -o AO-91 -l CM85