Currency Transfigure
Currency Transfigure
INTORDUCTION:
The Currency Converter in Python is a simple project developed using python
3.6.8 version. This project is a GUI [Graphic User Interference] application
which converts Currency from one unit to another, for example: euros to
pounds, rupees to dollars, etc… Also, this app is capable of handling all types of
expectations of the business people. This project is an interesting as well as a
useful project.
rates so, that the calculated result changes whenever the value of either of
rates.
The frequency at which currency converts update the exchange rates they
use varies.
buying or selling.
Tkinter:
Tkinter is one of those great built-in Python libraries that has been around for a
long time; it is used to create snazzy graphical user interfaces (GUIs) for
desktop applications.
Requests library:
The requests library is the de facto standard for making HTTP requests in
Python. It abstracts the complexities of making requests behind a beautiful,
simple API so that you can focus on interacting with services and consuming
data in your application.
# mkdir currencyconverter
# cd currencyconverter
# python -m venv env
# .\env\Scripts\activate.bat
# pip install requests
SOURCE CODE
import requests
#import json
API_KEY = 'de66f6b06d4e3eee31a27a7c'
# this gives the window the width(310), height(320) and the position(center)
window.geometry('310x340+500+200')
# this will make the window not resizable, since height and width is FALSE
window.resizable(height=FALSE, width=FALSE)