Python 官方文档:入门教程 => 点击学习
摸鱼小工具_利用python实时刷新基金估值 效果预览 上源码 import requests import JSON import os from prettytable i
上源码
import requests
import JSON
import os
from prettytable import PrettyTable
import time
fundlist = ['163817','161017','003860']
def GetFundjsonInfo(fundcode):
url = "Http://fundgz.1234567.com.cn/js/"+fundcode+".js"
response = requests.get(url)
fundDatainfo = response.text.split('({')[1]
fundDataInfo = '{'+ fundDataInfo.split('})')[0] + '}'
fundDataInfo = json.loads(fundDataInfo)
return fundDataInfo
os.system("cls")
while True:
table = PrettyTable(["名称","昨日净值","实时估值","增长率"])
for fund in fundlist:
myfund = GetFundJsonInfo(fund)
table.add_row([myfund['name'],myfund['dwjz'],myfund['gsz'],myfund['gszzl']])
print(table)
time.sleep(5)
os.system("cls")
说明
jsonpgz({"fundcode":"163817","name":"中银转债增强债券B","jzrq":"2021-09-10","dwjz":"3.1120","gsz":"3.1127","gszzl":"0.02","gztime":"2021-09-13 14:54"});
到此这篇关于利用Python实时刷新基金估值(摸鱼小工具)的文章就介绍到这了,更多相关python基金估值内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: 利用python实时刷新基金估值效果(摸鱼小工具)
本文链接: https://lsjlt.com/news/135705.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0