Metadata-Version: 1.1
Name: spacetracktool
Version: 0.1.0b8
Summary: A Python API for querying space-track.org
Home-page: https://github.com/Engineero/spacetracktool
Author: Engineero
Author-email: engineerolabs@gmail.com
License: MIT
Description: SpaceTrackTool
        ==============
        
        Master branch
        ------------------
        
        |travis_m| |coveralls_m|
        
        .. |travis_m| image:: https://travis-ci.org/Engineero/spacetracktool.svg?branch=master
           :target: https://travis-ci.org/Engineero/spacetracktool
        .. |coveralls_m| image:: https://coveralls.io/repos/github/Engineero/spacetracktool/badge.svg?branch=master
           :target: https://coveralls.io/github/Engineero/spacetracktool?branch=master
        
        Development branch
        ------------------
        
        |travis_d| |coveralls_d|
        
        .. |travis_d| image:: https://travis-ci.org/Engineero/spacetracktool.svg?branch=develop
           :target: https://travis-ci.org/Engineero/spacetracktool
        .. |coveralls_d| image:: https://coveralls.io/repos/github/Engineero/spacetracktool/badge.svg?branch=develop
           :target: https://coveralls.io/github/Engineero/spacetracktool?branch=develop
        
        
        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`__.
        
        __ https://www.space-track.org/documentation
        
        - Source: https://github.com/Engineero/spacetracktool
        - Issue Tracker: https://github.com/Engineero/spacetracktool/issues
        
        .. _space-track.org: https://www.space-track.org/auth/login
        
Keywords: space spacetrack elset tle satellite astronomy
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Utilities
