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

Поділитися
Вставка
  • Опубліковано 19 кві 2022
  • 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.
    Code: github.com/arpanneupane19/Cur...
    To learn more about APIs, check my video here: • How to Fetch APIs with...
    My Website: arpanneupane.com
    My GitHub: github.com/arpanneupane19
    My Programming Gear :
    Keyboard: amzn.to/42vXkxh
    Laptop: amzn.to/3CkAP3W
    Laptop Stand: amzn.to/3X116Oi
    Desk: amzn.to/43wmIEt
    Monitor: amzn.to/42BAaFH
    Monitor Arm: amzn.to/3NR0APS
    Chair: amzn.to/42vvKAn
    Desk Mat/Mousepad: amzn.to/43AhKqj
    Microphone: amzn.to/45RuQ43
    Headphones: amzn.to/445sf4R
    #Python // #LearnToCode // #API
  • Наука та технологія

КОМЕНТАРІ • 22

  • @thayrogabriel1396
    @thayrogabriel1396 2 місяці тому

    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.

  • @bixen1807
    @bixen1807 Рік тому +1

    Very high quality video! I subscribed.

  • @ah3yo
    @ah3yo Рік тому +6

    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.

    • @kalebbarney2783
      @kalebbarney2783 Рік тому +1

      The 'response' variable you made had a typo. If you fix the variable title it should fix it

  • @BM-bs2ij
    @BM-bs2ij Рік тому +2

    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

  • @qsdqjyo
    @qsdqjyo Рік тому +1

    Thanks mate!

  • @JanMarsalekWirecard
    @JanMarsalekWirecard 2 роки тому +1

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

  • @mavala2548
    @mavala2548 Рік тому +1

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

  • @sully9832
    @sully9832 Рік тому +1

    holy wpm

  • @codym0902
    @codym0902 Рік тому

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

    • @ArpanNeupaneProductions
      @ArpanNeupaneProductions  Рік тому

      Do you mean the editor?

    • @codym0902
      @codym0902 Рік тому

      @@ArpanNeupaneProductions yeah sure. im in class learning all of this kind of stuff right now. Just wondering like why yours is purple and all that. Mines not that way

    • @ArpanNeupaneProductions
      @ArpanNeupaneProductions  Рік тому

      @@codym0902 That’s just because of my theme.

  • @adamfatyga7977
    @adamfatyga7977 Рік тому +1

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

  • @mohamediburahimp7661
    @mohamediburahimp7661 5 місяців тому

    Aed not working

  • @chefpeepeeinc2896
    @chefpeepeeinc2896 Рік тому +4

    "Beginner Tutorial"

  • @RS-ot7kx
    @RS-ot7kx Рік тому

    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