Skip to content

Commit

Permalink
v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmysoa committed Sep 13, 2017
1 parent 8eec2d9 commit 6563f43
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,13 @@ Quick Start
Change Logs
-----------

0.9.2 2017/09/13
===========

- 新增数据货币行情数据接口,同时支持火币、okcoin、中国比特币
- 部分bug修复


0.8.8 2017/08/29
===========

Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ def read(fname):
# long_description=read("READM.rst"),
long_description = long_desc,
author='Jimmy Liu',
install_requires={
'lxml>=3.4.0'
},
author_email='[email protected]',
license='BSD',
url='http://tushare.org',
Expand All @@ -85,6 +82,7 @@ def read(fname):
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: BSD License'],
packages=['tushare','tushare.stock', 'tushare.data', 'tushare.util', 'tushare.datayes',
'tushare.internet', 'tushare.fund', 'tushare.trader', 'tushare.futures'],
'tushare.internet', 'tushare.fund', 'tushare.trader', 'tushare.futures',
'tushare.coins'],
package_data={'': ['*.csv']},
)
6 changes: 5 additions & 1 deletion tushare/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.9.0'
__version__ = '0.9.2'
__author__ = 'Jimmy Liu'
"""
for trading data
Expand Down Expand Up @@ -119,3 +119,7 @@
from tushare.futures.domestic import (get_cffex_daily, get_czce_daily,
get_dce_daily, get_future_daily,
get_shfe_daily, get_shfe_vwap)


from tushare.coins.market import (coins_tick, coins_bar,
coins_snapshot, coins_trade)

0 comments on commit 6563f43

Please sign in to comment.