A Python API for querying space-track.org
Project description
Master branch
Development 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:
.. code-block:: python
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:
.. code-block:: python
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file spacetracktool-0.1.0b6.tar.gz
.
File metadata
- Download URL: spacetracktool-0.1.0b6.tar.gz
- Upload date:
- Size: 11.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62bbffe0d4bd364ab22ab57a547e73bf845818c86bb13c3bffa953186abfab89 |
|
MD5 | 346f4358cd20d4569e8a0357be10be9d |
|
BLAKE2b-256 | db1d80af54ecb5c9100c7d6546dd9d16bb42fad5e26fecc1186fec950f91f3b0 |