Metadata-Version: 1.1
Name: cryex
Version: 0.1.1
Summary: Clients for Ethereum cryptocurrency exchanges
Home-page: https://github.com/walkr/cryex
Author: Tony Walker
Author-email: walkr.walkr@gmail.com
License: MIT
Description: # Cryex
        
        Clients for various cryptocurrency exchanges.
        
        [![Build Status](https://travis-ci.org/walkr/cryex.svg?branch=master)](https://travis-ci.org/walkr/cryex)
        
        ### Exchanges supported:
        
        * Kraken
        * Poloniex
        
        
        ### Features supported:
        
        * Get ticker
        * ... more to come ...
        
        
        ### Usage:
        ```python
        from cryex import Poloniex, Kraken
        
        client = Poloniex()
        ticker_data = client.ticker('eth_btc')
        
        print(ticker_data)
        ```
        
        ```
        {
            'low24h': 0.0110211,
            'last': 0.0121899,
            'exchange': 'poloniex',
            'volume24h': 1350859.34589662,
            'high24h': 0.0140101,
            'pair': 'eth_btc'
        }
        ```
        
        =======
        History
        =======
        
        0.1.0 (2016-1-22)
        ------------------
        
        * First release on PyPI.
        
Keywords: cryex
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
