Metadata-Version: 1.1
Name: python-tuxexchange
Version: 0.0.1
Summary: Tux Exchange API wrapper for Python 2.7
Home-page: https://github.com/init-industries/python-tuxexchange
Author: sneurlax
Author-email: sneurlax@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: # python-tuxechange
        
        ![python](https://img.shields.io/badge/python-2.7-blue.svg)
        
        Inspired by [this](https://github.com/Olliecad1/Tux_Exchange_Python) wrapper written by [Olliecad1](https://github.com/Olliecad1) and following the example of [this](https://github.com/ericsomdahl/python-bittrex) wrapper written by [Eric Somdahl](https://github.com/ericsomdahl)
        
        > I ([sneurlax](https://github.com/sneurlax)) am not affiliated with, nor paid by [Tux Exchange](https://tuxexchange.com).  Use at your own risk
        
        **Private methods not currently supported**
        
        ## Usage
        
        See available methods in the [Tux exchange API docs](https://tuxexchange.com/docs)
        
        [test_manual.py](https://github.com/init-industries/python-tuxexchange/blob/master/tuxexchange/test_manual.py):
        ```python
        from tuxexchange import Tuxexchange
        
        tuxexchange = Tuxexchange()
        
        print tuxexchange.api_query('getcoins')
        {'PPC': {'website': 'www.peercoin.org', ...
        print tuxexchange.api_query('getticker')
        {'BTC_ICN': {'last': '0.00040418', ...
        ```
        
        ## Testing
        
        Run unit tests in [test.py](https://github.com/init-industries/python-tuxexchange/blob/master/tuxexchange/test.py)
        
Keywords: cryptocurrency exchange bitcoin trading
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
