#!/usr/bin/python3
# -*- coding: utf-8 -*-
#USD 场内 场外 价格
import urllib.request, urllib.parse
import re, json
class USD:
# 汇率,和讯接口
def forex_(self):
url = "http://webforex.hermes.hexun.com/forex/quotelist?code=FOREXUSDCNY&column=Code,Price"
r = urllib.request.urlopen(url)
html = r.read()
获取美元人民币以及USDT人民币汇率-Python版
最新推荐文章于 2025-03-09 00:02:23 发布