Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
shidenggui committed Mar 9, 2016
1 parent 56802b1 commit abe42da
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,24 +51,24 @@ quotation.all

```python
{'000159': {'name': '国际实业', # 股票名
'buy': '8.87', # 竞买价
'sell': '8.88', # 竞卖价
'now': '8.88', # 现价
'open': '8.99', # 开盘价
'close': '8.96', # 昨日收盘价
'high': '9.15', # 今日最高价
'low': '8.83', # 今日最低价
'turnover': '22545048', # 交易股数
'volume': '202704887.74'# 交易金额
'ask1': '8.88', # 卖一价
'ask1_volume': '111900', # 卖一量
'ask2': '8.89',
'ask2_volume': '54700',
'bid1': '8.87', # 买一价
'bid1_volume': '21800', # 买一量
'buy': 8.87, # 竞买价
'sell': 8.88, # 竞卖价
'now': 8.88, # 现价
'open': 8.99, # 开盘价
'close': 8.96, # 昨日收盘价
'high': 9.15, # 今日最高价
'low': 8.83, # 今日最低价
'turnover': 22545048, # 交易股数
'volume': 202704887.74# 交易金额
'ask1': 8.88, # 卖一价
'ask1_volume': 111900, # 卖一量
'ask2': 8.89,
'ask2_volume': 54700,
'bid1': 8.87, # 买一价
'bid1_volume': 21800, # 买一量
...
'bid2': '8.86',
'bid2_volume': '78400',
'bid2': 8.86,
'bid2_volume': 78400,
'date': '2016-02-19',
'time': '14:30:00',
...},
Expand Down
2 changes: 1 addition & 1 deletion easyquotation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .api import *
from .helpers import get_stock_codes, update_stock_codes

__version__ = '0.3.3'
__version__ = '0.3.4'
__author__ = 'shidenggui'

0 comments on commit abe42da

Please sign in to comment.