Metadata-Version: 2.1
Name: cryptomarket
Version: 0.0.3
Summary: CryptoMarket API client library
Home-page: https://github.com/cryptomkt/cryptomkt-python
Author: CryptoMarket
Author-email: pablo@cryptomkt.com
License: UNKNOWN
Description: # CryptoMarket
        The official Python library for the [CryptoMarket API v1](https://developers.cryptomkt.com).
        
        # Installation
        To install Cryptomarket, simply use pip:
        ```
        pip install cryptomarket
        ```
        # Documentation
        
        The first things you'll need to do is [sign up with CryptoMarket](https://www.cryptomkt.com/account/register).
        
        ## API Key + Secret
        If you're writing code for your own CryptoMarket account, [enable an API key](https://www.cryptomkt.com/account2#api_tab).
        
        Next, create a Client object for interacting with the API:
        
        ```
        from cryptomarket.exchange.client import Client
        
        client = Client(api_key, api_secret)
        ```
        
        # Usage
        
        ## [Market Data](https://developers.cryptomkt.com/es/#mercado)
        
        ### Get markets
        ```
        client.get_markets()
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
