Metadata-Version: 1.0
Name: stapi
Version: 0.1.13
Summary: A Python client for accessing Star Trek API
Home-page: https://github.com/mklucz/stapi-python
Author: Maciej Kluczyński
Author-email: maciej.lukasz.kluczynski@gmail.com
License: MIT
Description: ============
        stapi-python
        ============
        
        A python client for the Star Trek API http://stapi.co/
        
        Installation
        ------------
        .. code-block:: bash
           
            $ pip3 install stapi
        
        Usage
        -----
        .. code-block:: python
         
            import stapi
            criteria = stapi.search_criteria.AnimalSearchCriteria(0, 50, "", avian=True)
            response = stapi.RestClient().animal.search(criteria)
            # response now contains results from the API, in this case the first fifty animals which are avians
        
Platform: UNKNOWN
