python 实现一个图形界面的汇率计算器


Posted in Python onNovember 09, 2020

调用的api接口:

https://api.exchangerate-api.com/v4/latest/USD

python 实现一个图形界面的汇率计算器

完整代码

import requests
from tkinter import *
import tkinter as tk
from tkinter import ttk


class RealTimeCurrencyConverter():
  def __init__(self,url):
      self.data = requests.get(url).json()
      self.currencies = self.data['rates']

  def convert(self, from_currency, to_currency, amount): 
    initial_amount = amount 
    if from_currency != 'USD' : 
      amount = amount / self.currencies[from_currency] 
 
    
    amount = round(amount * self.currencies[to_currency], 4) 
    return amount

class App(tk.Tk):

  def __init__(self, converter):
    tk.Tk.__init__(self)
    self.title = 'Currency Converter'
    self.currency_converter = converter

    
    self.geometry("500x200")
    
    
    self.intro_label = Label(self, text = 'Welcome to Real Time Currency Convertor', fg = 'blue', relief = tk.RAISED, borderwidth = 3)
    self.intro_label.config(font = ('Courier',15,'bold'))

    self.date_label = Label(self, text = f"1 Indian Rupee equals = {self.currency_converter.convert('INR','USD',1)} USD \n Date : {self.currency_converter.data['date']}", relief = tk.GROOVE, borderwidth = 5)

    self.intro_label.place(x = 10 , y = 5)
    self.date_label.place(x = 160, y= 50)

    
    valid = (self.register(self.restrictNumberOnly), '%d', '%P')
    self.amount_field = Entry(self,bd = 3, relief = tk.RIDGE, justify = tk.CENTER,validate='key', validatecommand=valid)
    self.converted_amount_field_label = Label(self, text = '', fg = 'black', bg = 'white', relief = tk.RIDGE, justify = tk.CENTER, width = 17, borderwidth = 3)

    
    self.from_currency_variable = StringVar(self)
    self.from_currency_variable.set("INR") 
    self.to_currency_variable = StringVar(self)
    self.to_currency_variable.set("USD") 

    font = ("Courier", 12, "bold")
    self.option_add('*TCombobox*Listbox.font', font)
    self.from_currency_dropdown = ttk.Combobox(self, textvariable=self.from_currency_variable,values=list(self.currency_converter.currencies.keys()), font = font, state = 'readonly', width = 12, justify = tk.CENTER)
    self.to_currency_dropdown = ttk.Combobox(self, textvariable=self.to_currency_variable,values=list(self.currency_converter.currencies.keys()), font = font, state = 'readonly', width = 12, justify = tk.CENTER)

    
    self.from_currency_dropdown.place(x = 30, y= 120)
    self.amount_field.place(x = 36, y = 150)
    self.to_currency_dropdown.place(x = 340, y= 120)
    
    self.converted_amount_field_label.place(x = 346, y = 150)
    
    
    self.convert_button = Button(self, text = "Convert", fg = "black", command = self.perform) 
    self.convert_button.config(font=('Courier', 10, 'bold'))
    self.convert_button.place(x = 225, y = 135)

  def perform(self):
    amount = float(self.amount_field.get())
    from_curr = self.from_currency_variable.get()
    to_curr = self.to_currency_variable.get()

    converted_amount = self.currency_converter.convert(from_curr,to_curr,amount)
    converted_amount = round(converted_amount, 2)

    self.converted_amount_field_label.config(text = str(converted_amount))
  
  def restrictNumberOnly(self, action, string):
    regex = re.compile(r"[0-9,]*?(\.)?[0-9,]*$")
    result = regex.match(string)
    return (string == "" or (string.count('.') <= 1 and result is not None))

if __name__ == '__main__':
  url = 'https://api.exchangerate-api.com/v4/latest/USD'
  converter = RealTimeCurrencyConverter(url)

  App(converter)
  mainloop()

运行效果:

python 实现一个图形界面的汇率计算器

以上就是python 实现一个图形界面的汇率计算器的详细内容,更多关于python 汇率计算的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
在python中的socket模块使用代理实例
May 29 Python
利用Fn.py库在Python中进行函数式编程
Apr 22 Python
Python判断值是否在list或set中的性能对比分析
Apr 16 Python
Python多层嵌套list的递归处理方法(推荐)
Jun 08 Python
Python学习小技巧之列表项的排序
May 20 Python
详谈Numpy中数组重塑、合并与拆分方法
Apr 17 Python
python Web开发你要理解的WSGI &amp; uwsgi详解
Aug 01 Python
Python实现的排列组合、破解密码算法示例
Apr 12 Python
浅谈Pandas Series 和 Numpy array中的相同点
Jun 28 Python
Python中logging日志库实例详解
Feb 19 Python
python3 使用traceback定位异常实例
Mar 09 Python
结束运行python的方法
Jun 16 Python
python 读取串口数据的示例
Nov 09 #Python
Cpython解释器中的GIL全局解释器锁
Nov 09 #Python
OpenCV实现机器人对物体进行移动跟随的方法实例
Nov 09 #Python
基于python爬取梨视频实现过程解析
Nov 09 #Python
Python eval函数介绍及用法
Nov 09 #Python
python tkinter的消息框模块(messagebox,simpledialog)
Nov 07 #Python
python 用struct模块解决黏包问题
Nov 07 #Python
You might like
php上传、管理照片示例
2006/10/09 PHP
php检测apache mod_rewrite模块是否安装的方法
2015/03/14 PHP
PHP的重载使用魔术方法代码实例详解
2021/02/26 PHP
Google AJAX 搜索 API实现代码
2010/11/17 Javascript
js获取select选中的option的text示例代码
2013/12/19 Javascript
form.submit()不能提交表单的原因分析
2014/10/23 Javascript
javascript动态创建表格及添加数据实例详解
2015/05/13 Javascript
使用jQuery在对象中缓存选择器的简单方法
2015/06/30 Javascript
javascript 使用for循环时该注意的问题-附问题总结
2015/08/19 Javascript
confirm确认对话框的实现方法总结
2016/06/17 Javascript
Javascript中的数组常用方法解析
2016/06/17 Javascript
微信小程序 教程之wxapp视图容器 swiper
2016/10/19 Javascript
vue :src 文件路径错误问题的解决方法
2018/05/15 Javascript
取消Bootstrap的dropdown-menu点击默认关闭事件方法
2018/08/10 Javascript
浅析JS中什么是自定义react数据验证组件
2018/10/19 Javascript
vue 自定义右键样式的实例代码
2019/11/06 Javascript
JS实现TITLE悬停长久显示效果完整示例
2020/02/11 Javascript
Vue的自定义组件不能使用click方法的解决
2020/07/28 Javascript
[00:50]深扒TI7聊天轮盘语音出处6
2017/05/11 DOTA
[42:24]完美世界DOTA2联赛循环赛 LBZS vs DM BO2第一场 11.01
2020/11/02 DOTA
使用httplib模块来制作Python下HTTP客户端的方法
2015/06/19 Python
Python中使用platform模块获取系统信息的用法教程
2016/07/08 Python
Python编程实现二叉树及七种遍历方法详解
2017/06/02 Python
利用Anaconda简单安装scrapy框架的方法
2018/06/13 Python
python绘制散点图并标记序号的方法
2018/12/11 Python
python实现基于朴素贝叶斯的垃圾分类算法
2019/07/09 Python
python列表每个元素同增同减和列表元素去空格的实例
2019/07/20 Python
Django封装交互接口代码
2020/07/12 Python
印度尼西亚值得信赖的第一家网店:Bhinneka
2018/07/16 全球购物
SEPHORA丝芙兰德国官方购物网站:化妆品、护肤品和香水
2020/01/21 全球购物
毕业生护理专业个人求职信范文
2014/01/04 职场文书
电子商务网站的创业计划书
2014/01/05 职场文书
依法行政工作汇报材料
2014/10/28 职场文书
市场督导岗位职责
2015/04/10 职场文书
大学生村官驻村工作心得体会
2016/01/23 职场文书
Python调用腾讯API实现人脸身份证比对功能
2022/04/04 Python