开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
setup.py 4.02 KB
一键复制 编辑 原始数据 按行查看 历史
timeroses 提交于 2017年10月10日 13:27 +08:00 . first vision
from setuptools import setup
import easyquotation
long_desc = """
easyquotation
===============
* easy to use to get stock info in China Stock
Installation
--------------
pip install easyquotation
Upgrade
---------------
pip install easyquotation --upgrade
Quick Start
--------------
::
import easyquotation
#### 选择 sina 行情
```python
quotation = easyquotation.use('sina')
```
#### 获取所有股票行情
```python
quotation.all
```
**return**
```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', # 买一量
...
'bid2': '8.86',
'bid2_volume': '78400',
'date': '2016-02-19',
'time': '14:30:00',
...},
......
}
```
#### 选择 leverfun 免费十档行情
```
quotation = easyquotation.use('lf') # ['leverfun', 'lf']
```
#### 获取十档行情
##### 单只股票
```
quotation.stocks('162411')
```
##### 多只股票
```
quotation.stocks(['000001', '162411'])
```
**return**
```python
{'000159': {'buy': '8.87', # 竞买价
'sell': '8.88', # 竞卖价
'now': '8.88', # 现价
'close': '8.96', # 昨日收盘价
'ask1': '8.88', # 卖一价
'ask1_volume': '111900', # 卖一量
'ask2': '8.89',
'ask2_volume': '54700',
'bid1': '8.87', # 买一价
'bid1_volume': '21800', # 买一量
...
'bid2': '8.86',
'bid2_volume': '78400',
...},
......
}
```
#### 选择 jsl 行情
```
quotation = easyquotation.use('jsl') # ['jsl']
```
##### 获取分级基金信息
```
quotation.funda() # 参数可选择利率、折价率、交易量、有无下折、是否永续来过滤
quotation.fundb() # 参数如上
```
*****return**
```
{ 150020:
{'abrate': '5:5',
'calc_info': None,
'coupon_descr': '+3.0%',
'coupon_descr_s': '+3.0%',
'fund_descr': '每年第一个工作日定折,无下折,A不参与上折,净值<1元无定折',
'funda_amount': 178823,
'funda_amount_increase': '0',
'funda_amount_increase_rt': '0.00%',
'funda_base_est_dis_rt': '2.27%',
'funda_base_est_dis_rt_t1': '2.27%',
'funda_base_est_dis_rt_t2': '-0.34%',
'funda_base_est_dis_rt_tip': '',
'funda_base_fund_id': '163109',
'funda_coupon': '5.75',
'funda_coupon_next': '4.75',
'funda_current_price': '0.783',
'funda_discount_rt': '24.75%',
'funda_id': '150022',
'funda_increase_rt': '0.00%',
'funda_index_id': '399001',
'funda_index_increase_rt': '0.00%',
'funda_index_name': '深证成指',
'funda_left_year': '永续',
'funda_lower_recalc_rt': '1.82%',
'funda_name': '深成指A',
'funda_nav_dt': '2015-09-14',
'funda_profit_rt': '7.74%',
'funda_profit_rt_next': '6.424%',
'funda_value': '1.0405',
'funda_volume': '0.00',
'fundb_upper_recalc_rt': '244.35%',
'fundb_upper_recalc_rt_info': '深成指A不参与上折',
'last_time': '09:18:22',
'left_recalc_year': '0.30411',
'lower_recalc_profit_rt': '-',
'next_recalc_dt': '<span style="font-style:italic">2016年01月04日</span>',
'owned': 0,
'status_cd': 'N'}>'}}
```
#### 更新股票代码
```
easyquotation.update_stock_codes()
```
"""
setup(
name='easyquotation',
version=easyquotation.__version__,
description='A utility for Fetch China Stock Info',
long_description=long_desc,
author='shidenggui',
author_email='longlyshidenggui@gmail.com',
license='BSD',
url='https://github.com/shidenggui/easyquotation',
keywords='China stock trade',
install_requires=['requests', 'aiohttp', 'six'],
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: BSD License'],
packages=['easyquotation'],
package_data={'': ['*.conf']}
)
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/timeroses/pythoncoding.git
git@gitee.com:timeroses/pythoncoding.git
timeroses
pythoncoding
pythoncoding
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /