当前位置: 首页 > 工具软件 > forex-python > 使用案例 >

获取美元人民币实时汇率-Python版

丰博
2023-12-01

本文介绍如何使用Python获取美元人民币实时汇率

# -*- coding: utf-8 -*-
# @Author: 比特量化
# @Date:   2017-08-26

import re
import json
import urllib.request

url = "http://webforex.hermes.hexun.com/forex/quotelist?code=FOREXUSDCNY&column=Code,Price"
req = urllib.request.Request(url)
f = urllib.request.urlopen(req)
html = f.read().decode("utf-8")
print(html)

s = re.findall("{.*}",str(html))[0]
sjson = json.loads(s)

USDCNY = sjson["Data"][0][0][1]/10000
print(USDCNY)

返回如下

({"Data":[[["USDCNY",70807]]]});
7.0807
 类似资料: