嵌入html图像tkinter

时间:2018-07-19 19:42:04

标签: html python-3.x tkinter beautifulsoup

全部。我通常会学习有关编码,tkinter和Python的更多信息,我想创建一个货币转换器。我已经按照自己的意愿运行了转换器,但是我想将该网站上的USD / EUR图表添加到我的GUI中:

https://www.xe.com/currencyconverter/convert/?Amount=1&From=USD&To=EUR

请问关于该怎么做的建议?

我已经用过

html_code = urllib.request.urlopen(url).read()
self.soup = BeautifulSoup(html_code, 'html.parser')
self.result = self.soup.find('span', {'class': "uccResultAmount"}).string

从网站上获取一些信息。

谢谢

0 个答案:

没有答案