Skip to main content

A python package that streamlines financial calculations

Project description

finhelp

Helping simplify finance

A python package to make financial calculations simple.

The package provides a wide range of tools and calculators designed specifically for financial applications.

Features

  • Net Income
  • Simple Interest
  • Compound Interest
  • Inflation adjusted price
  • Purchasing Power
  • Compounded Annual Growth Rate (CAGR)

Example to use

  • Compound Interest
# To calculate compound interest for 
# principal amount of 100000 invested for 10 years 
# at an interest rate of 10 per cent and the 
# compounding is annual.
from finhelp import compound_interest

print( compound_interest( 100000, 0.1, 10, 1))
# 159374.25
# The compounded interest earned is 159374.25  
  • Purchasing Power
# To determine the purchasing power 
# of the amount of 10,000 in future
from finhelp import purchasing_power

print( round( purchasing_power( 10000, 0.05, 10)))
# 6139
# The value of 10,000 will decline to
#  6139 in 10 years 
# if inflation is 5 per cent. 

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

finhelp-0.0.1.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

finhelp-0.0.1-py3-none-any.whl (3.7 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