设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 创业者 手机 数据
当前位置: 首页 > 综合聚焦 > 编程要点 > 正文

利用python实时刷新基金估值 摸鱼小工具

发布时间:2021-11-18 10:37 所属栏目:13 来源:互联网
导读:摸鱼小工具_利用python实时刷新基金估值 效果预览 上源码 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/
摸鱼小工具_利用python实时刷新基金估值 效果预览
 
 
上源码
 
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")
说明
 
prettytable 通过表格格式化打印基金数据便于浏览数据 os.system(“cls”) 用于清屏刷新 原始的响应内容
jsonpgz({"fundcode":"163817","name":"中银转债增强债券B","jzrq":"2021-09-10","dwjz":"3.1120","gs

(编辑:ASP站长网)

    网友评论
    推荐文章
      热点阅读