Metadata-Version: 1.1
Name: china-stock
Version: 0.1.5
Summary: china stock
Home-page: https://github.com/fuermosi777/china-stock
Author: Hao Liu
Author-email: liuhao1990@gmail.com
License: MIT
Download-URL: https://github.com/fuermosi777/china-stock
Description: china-stock
        ===========
        
        .. image:: https://travis-ci.org/fuermosi777/china-stock.svg?branch=master
        
        Author: `Hao Liu <http://liuhao.im>`_
        
        ~~~~~~~
        Install
        ~~~~~~~
        
        ::
        
        	$ pip install china-stock
        
        ~~~
        Use
        ~~~
        
        Import china-stock module:
        
        ::
            
            >>> import chinastock as cs
        
        Get stock prices information on nearest trading day:
        
        ::
        
        	>>> cs.get_stock_today(code='000001', exchange='SZ')
        
        Get historical stock close prices:
        
        ::
        
            >>> cs.get_stock_history(code='000001', exchange='SZ')
        
        Get stock's adjusted close prices, open, high, low, volume, and change:
        
        ::
        
            >>> cs.get_stock_history_adj(code='000001', exchange='SZ')
        
        ~~~~~~
        Update
        ~~~~~~
        
        07/14/2015:
            * Add :code:`get_stock_history` and :code:`get_stock_history_adj` methods
            * :code:`get_stock_today` method return strings, not :code:`datetime`
Keywords: stock
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
