1 Star 0 Fork 9

柴伏井/股票财务指标数据

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
财务数据调试.py 581 Bytes
一键复制 编辑 原始数据 按行查看 历史
小果量化 提交于 2022-04-26 01:30 . update 程序代码/.keep.
import pandas as pd
import tkinter
import requests
from bs4 import BeautifulSoup
from lxml import etree
df=pd.read_html(r'https://money.finance.sina.com.cn/corp/view/vFD_FinancialGuideLineHistory.php?stockid=600031&typecode=financialratios61')[3]
df.columns=['时间','加权每股收益率','变动比例']
df1=df.sort_index(ascending=False)
print(df1)
df1.to_excel(r'C:\Users\Administrator\Desktop\财务指标.xlsx')
plt.plot(df1['时间'],df['摊薄每股收益率'])
plt.show()
'''
for i in range(len(df)):
print(df[i])
print(i,'**********'*10)
'''
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/chaifujing001/stock-financial-index-data.git
[email protected]:chaifujing001/stock-financial-index-data.git
chaifujing001
stock-financial-index-data
股票财务指标数据
master

搜索帮助