How to Build a Currency Converter in Python | Beginner Python Project

preview_player
Показать описание
Hey guys! Welcome back, in this video, I will be showing you how to build a currency converter in Python using the Requests library and the Frankfurter API.

If you don't know what an API is, an API is a web service that allows you to request data from a server. The API is a way for the server to provide data in a machine-readable format.

My Programming Gear :

#Python // #LearnToCode // #API
Рекомендации по теме
Комментарии
Автор

Very high quality video! I subscribed.

bixen
Автор

Man, I'm so grateful for your help. I understood every single line of that code. And the most important thing: IT WORKED!!!
Thank you very much.

thayrogabriel
Автор

Works perfectly, thanks!
One thing though, in the last line when I wrote "response.json" it gave me an error. It said it was not defined. And it asked if I meant "respone.json", when I did that it worked.

ahyo
Автор

Hi i get this error when i run the code "ModuleNotFoundError: No module named 'email.utils'; 'email' is not a package" what do i need to do

BM-bsij
Автор

its not working bro
if we enter anything now it giving 404 answer ony
i tried to do usd to inr it gives 404

mavala
Автор

Line 9 gave me a syntax error, I suspected because the to_amount was in the quotes, but it wasnt that. Help pls

JanMarsalekWirecard
Автор

At last, working code :) But how to make app like that with cryptocurrency?

adamfatyga
Автор

What Software for python is this? Mine looks nothing like this

codym
Автор

Hi Arpan, How to achieve following Write a class CurrencyConverter that contains the following methods:
• double YenToDollar(double yen, double dollar)
• double DollarToYen(double yen, double dollar)
Sample:
YenToDollar(10, 100) = return (10*(1/130.9) + 100) = 100.076
DollarToYen(10, 100) = return (10 + (100*130.9)) = 13100
Looking forward to hearing from you

RS-otkx