Metadata-Version: 1.1
Name: huobi
Version: 0.1.5
Summary: Huobi Python SDK
Home-page: https://github.com/ericls/huobi
Author: Shen Li
Author-email: dustet@gmail.com
License: MIT License
Description: Huobi
        =====
        
        Huobi Python SDK
        
        Requirements
        ------------
        
        .. code:: bash
        
            Python>=3.6
        
        Installaton
        -----------
        
        .. code:: bash
        
            pip install huobi
        
        Usage
        -----
        
        Rest API
        ~~~~~~~~
        
        Example:
        
        .. code:: python
        
            >>> from huobi import HuobiRestClient
            >>> client = HuobiRestClient(access_key=..., secret_key=...)
            >>> tades = client.market_history_trade(symbol='ethusdt').data
        
        To see all available methods and their arguments:
        
        .. code:: python
        
            >>> from huobi import HuobiRestClient
            >>> help(HuobiRestClient)
            >>> help(HuobiRestClient.symbols)
        
        Real Time API
        ~~~~~~~~~~~~~
        
        .. code:: python
        
            NotImplemented
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
