前言
在之前的语法里面,我们记得有一个初识Python之汇率转换篇,在那个程序里面我们发现可以运用一些基础的语法写一个汇率计算,但是学到后面的小伙伴就会发现这个小程序有一定的弊端。
首先,它不可以实时的获取汇率的值,每次都需要我们自己去定义一个汇率转换值,这个就会显得不是很智能,有点机械,所以我们这一个利用爬虫爬取一个网址里面的汇率值(一直在更新的),这里我们利用Xpath来获取这个数据值
其次我们发现在之前的程序里面,我们好像只能输入两位数的货币数据,这一次我们通过正负索引的方法,只获取除了最后三个单位的之外的数据即可,灵活的运用,然后输出最后带入单位,最后让输出个更加的美观和直接。
下面我们来看看爬虫数据的代码
首先我们看看这个网址,我们来解析一下这个网页的数据页面
导入库和爬取数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import requests
from lxml import etree
headers = {
"User-Agent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36"
}
url = "https://www.huilv.cc/USD_CNY/"
def Get_huilv(url, headers1):
res = requests.get(url = url, headers = headers1, timeout = 2 )
# print(res.status_code)#打印状态码
html = etree.HTML(res.text)
USD_VS_RMB_0 = html.xpath( '//div[@id="main"]/div[1]/div[2]/span[1]/text()' )
for a in USD_VS_RMB_0:
b = a
USD_VS_RMB_1 = float (b)
print ( "实时汇率为:{}" . format (USD_VS_RMB_1))
|
这里的Xpath语法规则,大家可以移步于初识爬虫之Xpath语法篇看看,其实一条语句就可以解决,非常的方便。
转换程序代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
currency_str_value = 0
while currency_str_value ! = "":
USD_VS_RMB = float ( str (USD_VS_RMB_1))
# 输入带单位的货币金额
currency_str_value = input ( '请输入带单位货币的金额: ' )
# 获取货币单位
unit = currency_str_value[ - 3 :].upper() # 第一次判断
if unit = = 'CNY' :
exchange_rate = 1 / USD_VS_RMB
string = "美元"
elif unit = = 'USD' :
exchange_rate = USD_VS_RMB
string = "元"
else :
exchange_rate = - 1
if exchange_rate ! = - 1 :
in_money = eval (currency_str_value[ 0 : - 3 ])
# 使用lambda定义函数
convert_currency2 = lambda x: x * exchange_rate
# 调用lambda函数
out_money = convert_currency2(in_money)
print ( '转换后的金额是:{} {} ' . format ( round (out_money), string))
else :
print ( '无法计算' )
|
其实里面没有什么难点,只是对于一些语法不够熟练的小伙伴来说有一点难,不过多看几次就好了
下面我们来看看演示效果
全部代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# -*- coding : utf-8 -*-
# @Time : 2020/9/8 12:37
# @author : 王小王
# @Software : PyCharm
# @File : 汇率实时计算.py
# @CSDN : https://blog.csdn.net/weixin_47723732
import requests
from lxml import etree
headers = {
"User-Agent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36"
}
url = "https://www.huilv.cc/USD_CNY/"
def Get_huilv(url, headers1):
res = requests.get(url = url, headers = headers1, timeout = 2 )
# print(res.status_code)#打印状态码
html = etree.HTML(res.text)
USD_VS_RMB_0 = html.xpath( '//div[@id="main"]/div[1]/div[2]/span[1]/text()' )
for a in USD_VS_RMB_0:
b = a
USD_VS_RMB_1 = float (b)
print ( "实时汇率为:{}" . format (USD_VS_RMB_1))
currency_str_value = 0
while currency_str_value ! = "":
USD_VS_RMB = float ( str (USD_VS_RMB_1))
# 输入带单位的货币金额
currency_str_value = input ( '请输入带单位货币的金额: ' )
# 获取货币单位
unit = currency_str_value[ - 3 :].upper() # 第一次判断
if unit = = 'CNY' :
exchange_rate = 1 / USD_VS_RMB
string = "美元"
elif unit = = 'USD' :
exchange_rate = USD_VS_RMB
string = "元"
else :
exchange_rate = - 1
if exchange_rate ! = - 1 :
in_money = eval (currency_str_value[ 0 : - 3 ])
# 使用lambda定义函数
convert_currency2 = lambda x: x * exchange_rate
# 调用lambda函数
out_money = convert_currency2(in_money)
print ( '转换后的金额是:{} {} ' . format (out_money, string))
else :
print ( '无法计算' )
Get_huilv(url, headers)
|
总结
到此这篇关于利用Python中的Xpath实现一个在线汇率转换器的文章就介绍到这了,更多相关Python Xpath实现在线汇率转换器内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/weixin_47723732/article/details/108471452