Master branch |
|
Develop branch |
A Python API for making queries to space-track.org. To install:
pip install spacetracktool
To use, first get a username and password for space-track.org, then create a query of the desired class. For example, to create a TLE query:
import spacetracktool as st
query = st.SpaceTrackClient('username', 'password')
result = query.tle_query(norad_cat_id=12345) # look for a specific satellite ID
To create a slightly more complicated query, using ranges for some arguments:
import spacetracktool as st
from spacetracktool import operations as ops
query = st.SpaceTrackClient('username', 'password')
date_range = ops.make_range_string('2018-01-01', '2018-01-31')
result = query.tle_query(epoch=date_range) # generates and submits query
The official documents for the space-track.org API can be found here.
Documentation: https://engineero.github.io/spacetracktool/
Release files for spacetracktool 0.1.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| spacetracktool-0.1.2.tar.gz | 12.3 kB | Details |
Release files / spacetracktool-0.1.2.tar.gz
| Download URL | spacetracktool-0.1.2.tar.gz |
|---|---|
| Size | 12.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f3b6b41a89e944ddaa05d456d19d38249ed6cb703e4ebaf1e7221b5c40302fba
|
|
BLAKE2b-256 checksum How to use checksums |
5114aff530fbc012f345597a15081ae2b3e29d06508985f93a53f8f691e49458
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.2
|