第四小组学习研讨报告:习近平总书记地方工作期间坚持正确政绩观生动实践

This commit is contained in:
Beast
2026-06-15 17:07:00 +08:00
parent 1a3a2117c4
commit 79f166bdb4
2 changed files with 131 additions and 20 deletions

View File

@ -1,32 +1,32 @@
"""Fetch market data: major indices, crypto, forex via public APIs (no API key needed)."""
"""Fetch market data: major indices, crypto via public APIs (no API key needed)."""
import json, os, requests
from datetime import datetime, timezone, timedelta
OUTPUT = "/var/www/nav/data/market.json"
NAV_OUTPUT = "/var/www/nav/data/dashboard_market.json"
tz = timezone(timedelta(hours=8))
# Public endpoints (no API key)
# Crypto via CoinGecko (free, no key)
COINGECKO_URL = "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,solana,binancecoin,ripple&vs_currencies=usd&include_24hr_change=true"
# A-share indices via eastmoney (free, no key)
EM_URL = "https://push2.eastmoney.com/api/qt/ulist.np/get?fltt=2&secids=1.000001,0.399001,0.399006&fields=f2,f3,f4,f12,f14"
# A-share indices via Tencent (free, no key)
TENCENT_URL = "https://qt.gtimg.cn/q=sh000001,sz399001,sz399006"
def fetch_crypto():
try:
resp = requests.get(COINGECKO_URL, timeout=10)
data = resp.json()
items = []
icons = {"bitcoin": "", "ethereum": "Ξ", "solana": "", "binancecoin": "BNB", "ripple": "XRP"}
names = {"bitcoin": "BTC", "ethereum": "ETH", "solana": "SOL", "binancecoin": "BNB", "ripple": "XRP"}
for coin_id, icon in icons.items():
items = []
for coin_id, symbol in names.items():
if coin_id not in data:
continue
price = data[coin_id]["usd"]
change = data[coin_id].get("usd_24h_change", 0) or 0
items.append({
"type": "crypto",
"symbol": names[coin_id],
"icon": icon,
"symbol": symbol,
"price": f"${price:,.2f}",
"change_pct": f"{abs(change):.2f}%",
"is_up": change >= 0,
@ -38,22 +38,40 @@ def fetch_crypto():
def fetch_cn_indices():
"""Fetch A-share indices via Eastmoney API (no key). Retry once on timeout."""
"""Fetch A-share indices via Tencent qt API (free, no key).
Field indices: name=1, price=3, timestamp=30, change=31, change_pct=32.
"""
try:
resp = requests.get(EM_URL, timeout=15)
data = resp.json()
resp = requests.get(TENCENT_URL, timeout=10)
resp.encoding = "gbk"
text = resp.text
items = []
for diff in data.get("data", {}).get("diff", []):
name = diff.get("f14", "")
price = diff.get("f2", 0)
change = diff.get("f4", 0)
pct = diff.get("f3", 0)
for line in text.strip().split(";"):
line = line.strip()
if not line or "~" not in line:
continue
data_str = line.split('"')[1] if '"' in line else ""
if not data_str:
continue
fields = data_str.split("~")
if len(fields) < 33:
continue
name = fields[1]
price = fields[3]
change = fields[31]
change_pct = fields[32]
try:
price_f = float(price)
change_f = float(change)
pct_f = float(change_pct)
except (ValueError, TypeError):
continue
items.append({
"type": "cn_index",
"symbol": name,
"price": f"{price:.2f}",
"change_pct": f"{abs(pct):.2f}%",
"is_up": change >= 0,
"price": f"{price_f:.2f}",
"change_pct": f"{abs(pct_f):.2f}%",
"is_up": change_f >= 0,
})
return items
except Exception as e:
@ -65,6 +83,7 @@ def fetch_market():
crypto = fetch_crypto()
cn_indices = fetch_cn_indices()
# Full data for brief page
result = {
"updated_at": datetime.now(tz).strftime("%Y-%m-%d %H:%M"),
"crypto": crypto,
@ -75,6 +94,16 @@ def fetch_market():
with open(OUTPUT, "w", encoding="utf-8") as f:
json.dump(result, f, ensure_ascii=False, indent=2)
# Lightweight data for nav dashboard (no icons, plain names)
nav_data = {"eth_price": 0, "eth_change_pct": "0%", "eth_is_up": True}
for c in crypto:
if c["symbol"] == "ETH":
nav_data["eth_price"] = c["price"]
nav_data["eth_change_pct"] = c["change_pct"]
nav_data["eth_is_up"] = c["is_up"]
with open(NAV_OUTPUT, "w", encoding="utf-8") as f:
json.dump(nav_data, f, ensure_ascii=False, indent=2)
print(f"Crypto: {len(crypto)} | CN indices: {len(cn_indices)} -> {OUTPUT}")
return result