Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A python script which can convert currencies with live rates. #72

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CurrencyConverter/currencyConverter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import requests

print("Press Enter to exit the program \n")
currency_code = input("Currency you want to convert : ").lower()
url = f'http://www.floatrates.com/daily/{currency_code}.json'
r = requests.get(url).json()
dct_currencies = {}

if currency_code != 'usd':
dct_currencies['usd'] = float(r['usd']['rate'])
if currency_code != 'eur':
dct_currencies['eur'] = float(r['eur']['rate'])


while True:
received_code = input("Currency you want to convert to : ").lower()
if received_code == '':
break
amount = int(input("Enter amount : "))
received_rate = float(r[received_code]['rate'])
dct_currencies[received_code] = received_rate
result = round(amount * received_rate, 2)
print(f'You received {result} {received_code.upper()}.')
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ This is a collection of short Python scripts to solve and automate tasks and sim
30 | [**EC2-Instance-Launcher**](https://github.com/DiptoChakrabarty/Useful-Python-scripts-collection/blob/master/EC2-launcher/ec2.py) | Python script to automatically launch ec2 instances in AWS | boto3 , botocore , python-dotenv , environmental variables
31 | [**DirectorySummarizer**](https://github.com/j0fiN/Useful-Python-scripts-collection/blob/master/DirectorySummarizer/directory_summarizer.py) | A Python script which summarizes the number of different files in a directory. It also gives out the percentage of a particular file extension you want to know. | None |
31 | [**Folder-Automater**](https://github.com/decipher07/Useful-Python-scripts-collection/blob/master/Folder-Automater/automateall.py) | A Python script which compiles all the different formats of files present in the respective folder to a new folder containing only the Specified files . | None |
32 | [**Currency Conveter**](https://github.com/sharmas1ddharth/Python-scripts-collection/blob/master/CurrencyConverter/currencyConverter.py) | A Python script which can convert currency by scraping live rates from the floatrates website. | requests |