Currency Converter

This is a simple web-based currency converter application built using Streamlit. The application allows users to convert an amount from Euros, US Dollars, and British Pounds to Rupees (PKR/INR) based on user-provided exchange rates.

Features

  • Convert amounts from Euros, US Dollars, and British Pounds to Rupees.
  • User-friendly interface for entering amounts and exchange rates.
  • Displays converted amounts instantly.

Installation

  1. Ensure you have Python installed on your system.

  2. Install Streamlit using pip:

    pip install streamlit
    

How to run this

  1. Save the provided code to a Python file, e.g., currency_converter.py.

  2. Run the Streamlit application:

    streamlit run currency_converter.py
    
  3. A web browser window will open displaying the Currency Converter application.

Note

This is currently an offline calculator. Users need to provide the conversion rates manually. In future updates, an API will be integrated to fetch the current exchange rates automatically.