Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.25 KB

README.md

File metadata and controls

49 lines (30 loc) · 1.25 KB

Flask Loan Payment Calculator

This Flask application allows you to calculate the monthly payment for a loan based on the principal amount, annual percentage rate (APR), and loan term in years. Below is a brief overview of the project:

Getting Started

Prerequisites

  • Python installed on your machine.

  • Flask and required dependencies installed. You can install them using the following command:

    pip install flask

Installation

  1. Clone the repository:

    git clone https://github.com/your-username/flask-loan-calculator.git
    cd flask-loan-calculator
  2. Run the application:

    python app.py
  3. Open your web browser and go to http://127.0.0.1:5000/.

Usage

  1. Access the web interface by visiting http://127.0.0.1:5000/.
  2. Enter the principal amount, APR, and the loan term in years.
  3. Click the "Calculate" button to see the estimated monthly payment.

Contributing

Feel free to contribute by submitting issues or pull requests.

License

This project is licensed under the GNU General Public License v3.0.

Acknowledgments