人民币实时汇率获取和监控

文章介绍了使用Python爬取中国银行的汇率数据,包括现汇买入价和卖出价,通过函数get_rate抓取数据并存储,同时实现数据的滚动更新和可视化。还涉及了数据合并功能,将多个抓取的数据集合并成一个完整的汇率记录。
摘要由CSDN通过智能技术生成

数据来源:https://srh.bankofchina.com/search/whpj/search_cn.jsp

import time
import requests
from urllib.parse import urlencode
import datetime
from datetime import timedelta
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import os
from tqdm import tqdm
#显示所有列
pd.set_option('display.max_columns', None)
#显示所有行
pd.set_option('display.max_rows', None)
pd.set_option('display.width',120)
# 精度要求
# pd.set_option('precision',3)
np.set_printoptions(precision=3)
pd.set_option('display.float_format', lambda x: '%.3f' % x)



url = 'https://srh.bankofchina.com/search/whpj/search_cn.jsp'
headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/
  • 13
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
你可以使用以下的Java代码获取实时汇率信息: ```java import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.nio.charset.StandardCharsets; public class CurrencyConverter { public static void main(String[] args) { String fromCurrency = "USD"; String toCurrency = "EUR"; double amount = 100; double exchangeRate = getExchangeRate(fromCurrency, toCurrency); double convertedAmount = exchangeRate * amount; System.out.println(amount + " " + fromCurrency + " = " + convertedAmount + " " + toCurrency); } public static double getExchangeRate(String fromCurrency, String toCurrency) { String url = "https://api.exchangerate-api.com/v4/latest/" + fromCurrency; try { URL urlObj = new URL(url); HttpURLConnection connection = (HttpURLConnection) urlObj.openConnection(); connection.setRequestMethod("GET"); BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream(), StandardCharsets.UTF_8)); String inputLine; StringBuilder response = new StringBuilder(); while ((inputLine = in.readLine()) != null) { response.append(inputLine); } in.close(); String jsonResponse = response.toString(); double exchangeRate = Double.parseDouble(jsonResponse.split("\"" + toCurrency + "\":")[1].split(",")[0]); return exchangeRate; } catch (Exception e) { e.printStackTrace(); return 0; } } } ``` 上述的代码使用了 https://exchangerate-api.com 提供的 API 来获取实时汇率信息。你需要将上述的代码中的 `fromCurrency` 和 `toCurrency` 更改为你所需的货币代码,并将 `amount` 更改为你所需的金额。你也可以使用其他的实时汇率 API 来获取汇率信息,只需要将上述代码中的 `url` 更改为对应的 API 地址即可。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值