No project description provided
Project description
pywencai
获取同花顺问财数据
安装
pip install pywencai
Demo
import pywencai
res = pywencai.get(question='退市股票', sort_key='退市@退市日期', sort_order='asc')
print(res)
API
get(**kwargs)
根据问财语句查询结果
参数
question
必填,查询问句
sort_key
非必填,指定用于排序的字段,值为返回结果的列名
sort_order
非必填,排序规则,至为asc
(升序)或desc
(降序)
page
非必填,查询的页号,默认为1
perpage
非必填,每页数据条数,默认值100,由于问财做了数据限制,最大值为100,指定大于100的数值无效。
loop
非必填,是否循环分页,返回多页合并数据。默认值为False
,可以设置为True
或具体数值。
当设置为True
时,程序会一直循环到最后一页,返回全部数据。
当设置具体数值n
时,循环请求n页,返回n页合并数据。
返回值
该方法返回一个pandas
的Dataframe
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pywencai-0.2.4.tar.gz
(15.1 kB
view hashes)
Built Distribution
pywencai-0.2.4-py3-none-any.whl
(14.7 kB
view hashes)