Skip to main content

The EMI Library is a Python library that provides a convenient way to calculate the Equated Monthly Installment (EMI) for loans. The library implements the EMI formula, which takes into account the principal loan amount, interest rate, and tenure in months.

Project description

EMI Calculator

The EMI Calculator is a Python library that provides a convenient way to calculate the Equated Monthly Installment (EMI) for a loan. It helps borrowers determine the fixed monthly payment, considering the principal loan amount, interest rate, and tenure in months.

Installation

You can install the EMI Calculator library using pip:

pip install emi_calculator

Usage

from emi import emi_calculator
OR
import emi

# Note* emi_calculator takes 3 arguments:
#                1. loan amount
#                2. interest rate
#                3. tenure_month 
#  the emi will result in float format 
# you can use round function to round up what u want

# Input loan details
loan_amount = float(input('Enter loan amount: '))
interest_rate = float(input('Enter interest rate: '))
tenure_months = int(input('Enter tenure in months: '))

# Calculate EMI
calculate_emi = emi_calculator(loan_amount, interest_rate, tenure_months)
print(f"The Equated Monthly Installment (EMI) is: {calculate_emi:.2f}")

Example Let's calculate the EMI for a loan of $10,000 with an annual interest rate of 5% and a tenure of 36 months:

from emi import emi_calculator

loan_amount = 10000
interest_rate = 5
tenure_months = 36

emi = emi_calculator(loan_amount, interest_rate, tenure_months)
print(f"The Equated Monthly Installment (EMI) is: {emi:.2f}")

Output:

The Equated Monthly Installment (EMI) is: 304.17

Contributing Contributions are welcome! If you have any suggestions, improvements, or bug fixes, please create an issue or submit a pull request.

License This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

emi_calculator-1.1.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

emi_calculator-1.1-py3-none-any.whl (3.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page