Metadata-Version: 1.1
Name: ccex_api
Version: 1.0.3
Summary: Python 2.6/3.4+ Client for the CCex API.
Home-page: https://github.com/cyrbil/ccex_api
Author: Cyril DEMINGEON
Author-email: me@cyrbil.fr
License: DWTFYWT PUBLIC LICENSE
Description: CCEX Python Wrapper
        ===================
        
        Client for CCex API written in Python Currently supports all
        ticker/public/private endpoints.
        
        Installation
        ------------
        
        Via pip:
        
        ::
        
            pip install ccex_api
        
        Usage
        -----
        
        ::
        
            ccex = CCexAPI()
            ccex.tickers.tickers_coinnames()
            ccex.public.get_market_summaries()
        
            # credentials are required for private endpoints access
            ccex = CCexAPI('api_key', 'api_secret')
            ccex.private.get_balances()
        
        Offer a coffee or a beer
        ~~~~~~~~~~~~~~~~~~~~~~~~
        
        If you enjoyed this free software, and want to thank me, you can offer
        me something for a coffee, a beer, or more, I would be happy :)
        
        | Bitcoin : 13K5w1SXX7HTiKKQ1tQPerBKw1V6i65rsA
        | Ethereum : 0x2e693665b99d0b631c60ae0b9b7735d43c27e9cb
        | Dash : XwuAZapWHt5VU86ZBb5N2SDHK3t9XJUtGu
        | Doge : DDf9jQkC17vWJkG6VsKPLo2oTnw4qY8XWd
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires: requests
