利用python實時刷新基金估值效果(摸魚小工具)

摸魚小工具_利用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","gsz":"3.1127","gszzl":"0.02","gztime":"2021-09-13 14:54"});

到此這篇關於利用python實時刷新基金估值(摸魚小工具)的文章就介紹到這瞭,更多相關python基金估值內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: