#!/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()