0% found this document useful (0 votes)
40 views1 page

Online Banking System in Python Django

This document outlines an Online Banking Concept developed using the Django Web Framework, featuring account creation, money transactions, interest calculations, and transaction reporting. It lists prerequisites such as Python, Redis, and Git, along with specific package requirements for installation. Additionally, it provides installation steps for Django and includes default admin credentials.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views1 page

Online Banking System in Python Django

This document outlines an Online Banking Concept developed using the Django Web Framework, featuring account creation, money transactions, interest calculations, and transaction reporting. It lists prerequisites such as Python, Redis, and Git, along with specific package requirements for installation. Additionally, it provides installation steps for Django and includes default admin credentials.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

This is an Online Banking Concept created using Django Web Framework.

Features
1. Create Bank Account.
2. Deposit & Withdraw Money
3. Bank Account Type Support (e.g. Current Account, Savings Account)
4. Interest calculation depending on the Bank Account type
5. Transaction report with a date range filter
6. See balance after every transaction in the Transaction Report
7. Calculate Monthly Interest Using Celery Scheduled tasks
8. More efficient and accurate interest calculation and balance update
9. Ability to add Minimum and Maximum Transaction amount restriction
10. Modern UI with Tailwind CSS
Prerequisites
Be sure you have the following installed on your development machine:

1. Python >= 3.7


2. Redis Server
3. Git
4. pip
5. Virtualenv (virtualenvwrapper is recommended)
Requirements
1. celery==4.4.7
2. Django==3.2
3. django-celery-beat==2.0.0
4. python-dateutil==2.8.1
5. redis==3.5.3
Django Installation Steps :-
1. Install Python 3.7 Or Higher
2. Install Django version 2.2.0
3. Install all dependencies cmd -python -m pip install –-user -r
[Link]
4. Finally run cmd - python [Link] runserver

admin email - admin@[Link]

admin password - admin123

You might also like