Bharat Software Atm Manager Report

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 31

Contents

1. Introduction of the Project.

2. System Requirements of the Project.

3. Python Coding.

4. Output of the Project.

5. References.
Introduction of the Project
We the students of CLASS XII A of KENDRIYA VIDYALAYA
PALAMPUR HOLTA have been assigned the work of “BHARAT
SOFTWARE - ATM MANAGER ”.

To perform this task the students were divided into the group of
four students named as ADVITIYA, AKSHIT, SHUBHAM.

ADVITIYA , AKSHIT , SHUBHAM has been assigned the work of


coding and programming SHUBHAM, AKSHIT have been assigned
the work of analyzing the overall mistakes and have done the
conclusion work.

The project starts with – Enter


1 - NEW USER
Enter 2 - DISPLAY ALL CUSTOMERS
Enter 3 - SEARCH CUSTOMER
Enter 4 - OPEN NEW ACCOUNT
Enter 5 - DISPLAY ALL ACCOUNTS
Enter 6 - SEARCH AN ACCOUNT
Enter 7 - EXIT
Enter 0 - HELP

We are so glad that this work have been assigned to us, yet we
haven’t done this work before SH. SANJEEV SHARMA our
subject teacher have also helped us a lot to complete this project.
We feel so blessed that we have learnt all this work with the help
of our sir,we are also thankful to our respected principal SH.
LALIT KUMAR GUPTA for providing us various facilities to
complete this project.

As we are the students of CLASS XII A and we haven’t done this


type of project before, we have performed all that which we have
learnt from our CBSE PROGRAMMING. Hence, we know that this
programming would be further done on a big platform. Since we
have started this programming from SEPTEMBER month, we
believe that this programming would further help us a lot in our
future.
We are also thankful to our groupmates for cooperating with each
other while performing this task we have also polished the skills
of group activity.

PROCESS

FIRSTLY, we have done the planning in a paper work regarding


what have to do on the assigned project BHARAT SOFTWARE - ATM
MANAGER.

SECONDLY, we discussed our planning with our subject teacher


and then he provided us the right path to perform the work.

NEXT, we started our project on foot paths of our subject teacher.

THEN, we started our coding, coding took around 2 and half


months for completion.

NEXT, we analyzed the mistakes done and then we corrected


them.

THEN, we prepared the project format as shown above.

THANKS TO ALL OF WORTHY TEACHERS AND PRINCIPAL AND


MY DEAR GROUP MATES
ALSO A GREAT THANKS TO KENDRIYA VIDYALAYA
SANGATHAN FOR PROVIDING US THIS GOLDEN OPPORTUNITY
…………

System Requirements of the Project

Recommended System Requirements

Processors: Intel® Core™ i3 processor 4300M at 2.60 GHz.

Disk space: 2 to 4 GB.

Operating systems: Windows® 10, MACOS, and UBUNTU.


Python Versions: 3.X.X or Higher.

Minimum System Requirements

Processors: Intel Atom® processor or Intel® Core™ i3 processor.

Disk space: 1 GB.

Operating systems: Windows 7 or later, MACOS, and UBUNTU.

Python Versions: 2.7.X, 3.6.X.

Prerequisites before installing MySQL Connector Python

You need root or administrator privileges to perform the


installation process.

Python must be installed on your machine.

Note: – MySQL Connector Python requires python to be in the


system’s PATH. Installation fails if it doesn’t find Python.

On Windows, If Python doesn’t exist in the system’s PATH, please


manually add the directory containing python.exe yourself.

PYTHON CODING
#*****************KENDRIYA VIDYALYA PALAMPUR******************"

#***************BHARAT SOFTWARE - ATM MANAGER ****************"

#*******Designed and Maintained By:"

#******* ADVITIYA SHARMA - CLASS XII A - ROLL NO - 1 [2019-2020]

#******* AKSHIT WALIA - CLASS XII A - ROLL NO - 3 [2019-2020]

#******* KARTIK CHAUHAN - CLASS XII A - ROLL NO - 9 [2019-2020]

#******* SHUBHAM DOGRA - CLASS XII A - ROLL NO - 22 [2019-2020]

import mysql.connector
# GLOBAL VARIABLES DECLARATION

myConnnection ="" cursor=""

userName="" password

=""

cid=""

#MODULE TO CHECK MYSQL CONNECTIVITY def

MYSQLconnectionCheck ():

global myConnection

global userName global

password

userName = input("\n ENTER MYSQL SERVER'S USERNAME : ")

password = input("\n ENTER MYSQL SERVER'S PASSWORD : ")

myConnection=mysql.connector.connect(host="localhost",user=userName,passwd=password ,
auth_plugin='mysql_native_password' ) if myConnection:

print("\n CONGRATULATIONS ! YOUR MYSQL CONNECTION HAS BEEN ESTABLISHED !")

cursor=myConnection.cursor()

cursor.execute("CREATE DATABASE IF NOT EXISTS ATM")

cursor.execute("COMMIT")

cursor.close()

return myConnection

else:

print("\nERROR ESTABLISHING MYSQL CONNECTION CHECK USERNAME AND PASSWORD !")

#MODULE TO ESTABLISHED MYSQL CONNECTION def

MYSQLconnection ():
global userName

global password global

myConnection

myConnection=mysql.connector.connect(host="localhost",user=userName,passwd=password ,
database="ATM" , auth_plugin='mysql_native_password' )

if myConnection:

return myConnection

else:

print("\nERROR ESTABLISHING MYSQL CONNECTION !")

myConnection.close()

# MODULE TO CREATE NEW CUSATOMER

def newCustomer():

global cid

if myConnection:

cursor=myConnection.cursor()

createTable ="""CREATE TABLE IF NOT EXISTS CUSTOMER(CID VARCHAR(10) PRIMARY KEY ,CNAME
VARCHAR(30) NOT NULL

,ADDRESS VARCHAR(30)NOT NULL ,PHONE VARCHAR(12) NOT NULL)

"""

cursor.execute(createTable) print("\nPlease Fill All The Information

Carefully !") cid=input("Please Enter Customer ID : ")

cname=input("Please Enter Customer Name : ") address=input("Please Enter

Customer Address : ") phone=input("Please Enter Customer Contact No. : ")

sql='INSERT INTO CUSTOMER(cid,cname,address,phone) values(%s,%s,%s,%s)'

values=(cid,cname,address,phone) cursor.execute(sql,values)

cursor.execute("COMMIT")

cursor.close()

print("\nNew Customer Added Successfully !")


# MODULE TO DISPLAY CUSTOMER INFORMATION :

def displayAllCustomer():

if myConnection:

cursor=myConnection.cursor()

cursor.execute("SELECT * FROM CUSTOMER")

data = cursor.fetchall()

if data:

print("\n*****DETAILS OF ALL CUSTOMER*****")

print(data)

else:

print("Sorry ! No Record Found , Please Try Again ! ")

else:

print("\nERROR ESTABLISHING MYSQL CONNECTION !")

# MODULE TO SEARCH A CUSTOMER def

searchCustomer():

global cid if

myConnection:

cursor=myConnection.cursor()

cid=input("Please Enter Customer ID : ")

sql="SELECT * FROM CUSTOMER WHERE CID = %s"

values=(cid,)

data=cursor.execute(sql,values)

data = cursor.fetchall()

if data:

print("\n*****CUSTOMER DETAILS*****")

print(data)

else:

print("Sorry ! Customer NOT Found , Please Try Again ! ")

else:
print("\nSomthing Went Wrong ,Please Try Again !")

# MODULE TO OPEN A NEW ACCOUNT

def newAccount():

global cid

if myConnection:

cursor=myConnection.cursor()

cid=input("Please Enter Customer ID : ")

sql="SELECT * FROM CUSTOMER WHERE CID = %s"

values=(cid,)

data=cursor.execute(sql,values)

data = cursor.fetchall()

if data:

createTable ="""CREATE TABLE IF NOT EXISTS ACCOUNT(CID VARCHAR(10),ACCOUNT_NO INT


PRIMARY KEY

,ACCOUNT_TYPE VARCHAR(20) NOT NULL ,AMOUNT INT NOT NULL , PIN INT NOT NULL
UNIQUE)

"""

cursor.execute(createTable)

account_no=int(input("PLEASE ENTER THE ACCOUNT NUMBER [0-9]: "))

account_type=input("PLEASE ENTER THE ACCOUNT TYPE [ S-SAVING / C - CURRENT : ")

amount=int(input("PLEASE ENTER THE AMOUNT TO DEPOSIT : "))

ATM_pin=int(input("PLEASE ENTER THE ATM PIN [ FOUR DIGITIS ONLY ] : "))

sql='INSERT INTO ACCOUNT (cid,account_no,account_type,amount ,pin) VALUES


(%s,%s,%s,%s,%s)'

values1=(cid,account_no,account_type,amount,ATM_pin)

cursor.execute(sql,values1)

cursor.execute("COMMIT") print("\nNew

Account Opend Successfully !")

else:

print("Sorry ! Customer NOT Found , Please Try Again ! ")


else:

print("\nSomthing Went Wrong ,Please Try Again !")

# MODULE TO DISPLAY ALL ACCOUNTS

def displayAllAccounts():

if myConnection:

cursor=myConnection.cursor()

cursor.execute("SELECT * FROM ACCOUNT")

data = cursor.fetchall()

if data:

print("\n*****DETAILS OF ALL CUSTOMER*****")

print(data)

else:

print("Sorry ! No Account Information , Please Try Again ! ")

else:

print("\nERROR ESTABLISHING MYSQL CONNECTION !")

# MODULE TO SEARCH AN ACCOUNT def

searchAccount():

global cid if

myConnection:

cursor=myConnection.cursor() cid=input("PLEASE ENTER CUSTOMER

ID : ") account_no=int(input("PLEASE ENTER THE ACCOUNT NUMBER [0-

9]: ")) sql="SELECT * FROM ACCOUNT WHERE CID = %s AND

ACCOUNT_NO =%s"
values=(cid,account_no)

data=cursor.execute(sql,values)

data = cursor.fetchall() if data:

print("\n*****CUSTOMER ACCOUNT DETAILS*****")

print(data)

else:

print("Sorry ! Account Infromation NOT Found , Please Try Again ! ")

else:

print("Somthing Went Wrong ,Please Try Again !")

# MODULE TO WITHDRAW AMOUNT def

withdrawAmount():

count =3 if

myConnection:

cursor=myConnec

tion.cursor()

account_no=int(in

put("PLEASE

ENTER THE

ACCOUNT

NUMBER [0-9]: "))

sql="SELECT *

FROM ACCOUNT

WHERE

ACCOUNT_NO =

%s"

values=(account_no,)

data=cursor.execute(sql,values)

data = cursor.fetchall() if data:

while True:
ATM_PIN=int(input("PLEASE ENTER THE ATM PIN - ONLY 3 ATTEMPTS ARE ALLOWED : "))

sql='SELECT * FROM ACCOUNT WHERE PIN = %s'

values=(ATM_PIN,)

cursor.execute(sql,values) data

= cursor.fetchall()

if data:

amount=int(input("PLEASE ENTER AMOUNT TO WITHDRAW : "))

sql='UPDATE ACCOUNT SET AMOUNT = AMOUNT - %s'

cursor.execute(sql ,(amount,)) cursor.execute("COMMIT")

print("******* TRANSACTION SUCCESSFULLY COMPLETED ! *******")

print("***** PLEASE TAKE ONEY AND REMOVE YOUR CARD ! *****")

break

else:

print("Wrong Pin ! Please enter a Valid PIN")

count=count-1 print("You are left with only

",count ,"Attempts") if count == 0:

print("Your Card has been Blocked , Please Visit the Branch to activate it")

break

else:

print("Sorry ! Account Infromation NOT Found , Please Try Again ! ")

#MODULE TO PROVIDE HELP FOR USER def

helpMe():

print("Please, Visit The Offcial Website Of Vidyalaya To Download The Mannual !!!")

# MAIN SCREEN

print("************************* KENDRIYA VIDYALYA PALAMPUR ***************")

print("************************BHARAT SOFTWARE - ATM MANAGER ***************")


print("*****Designed and Maintained By:") print("*****ADVITIYA SHARMA - CLASS XII A -

ROLL NO - 1 [2019-2020]") print("*****AKSHIT WALIA - CLASS XII A - ROLL NO - 3

[2019-2020]") print("*****KARTIK CHAUHAN - CLASS XII A - ROLL NO - 9 [201

9-2020]") print("*****SHUBHAM DOGRA - CLASS XII A - ROLL NO - 22 [2019-20

20]")

#STARTING POINT OF THE SYSTEM

myConnection = MYSQLconnectionCheck ()

if myConnection: MYSQLconnection ()

while(1):

print("\n!=========================*************=======================!")

print("! PLEASE ENTER 1 FOR NEW USER !")

print("! PLEASE ENTER 2 TO DISPLAY ALL CUSTOMERS !")

print("! PLEASE ENTER 3 TO SEARCH A CUSTOMER !")

print("! PLEASE ENTER 4 TO OPEN NEW ACCOUNT !")

print("! PLEASE ENTER 5 TO DISPLAY ALL ACCOUNTS !")

print("! PLEASE ENTER 6 TO SEARCH AN ACCOUNT !")

print("! PLEASE ENTER 7 TO WITHDRAW AMOUNT !")

print("! PLEASE ENTER 8 TO EXIT !") print("!

PLEASE ENTER 0 FOR HELP !")

print("\n!============================*****END*****====================!")

choice = int(input("\n Please Enter Your Choice : "))

if choice == 1: newCustomer() elif choice == 2:

displayAllCustomer()

elif choice == 3:

searchCustomer()

elif choice == 4:

newAccount() elif

choice==5:
displayAllAccounts()

elif choice==6:

searchAccount() elif

choice==7:

withdrawAmount()

elif choice==8:

break elif

choice==0:

helpMe() else:

print("Sorry ,May Be You Are Giving Me Wrong Input, Please Try Again !!! ") else:

print("Check Your MYSQL Connection First !!! ")

#(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")

#(" TTTTT H H A N NK K ")

#(" T H H A A N N N K K ")

#(" T HHHHH A A A N N N K K Y Y OOOO U U ")

#(" T H H A A N NNK K YY O O U U ")

#(" T H H A AN NK K Y O O U U ")

#(" Y O O U U ")

#(" Y OOOO UUUU ")

#(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")

# END OF THE PROJECT


Output of the Project
Finally, we conclude our work and present the output of the Project.

MAIN SCREEN
STARTING OF SOFTWARE
FOR NEW USER
DISPLAY CUSTOMER DETAILS
TO SEARCH A CUSTOMER
TO OPEN NEW ACCOUNT
TO DISPLAY ALL ACCOUNTS
TO SEARCH AN ACCOUNT
TO WITHDRAW AMOUNT
BLOCKED PIN
TO EXIT
FOR HELP
DATABASE - ATM
TABLE STRUCTURE 1
TABLE STRUCTURE 2
BACKEND DATA GENERATED THROUGH
SOFTWARE
BACKEND DATA GENERATED THROUGH
SOFTWARE

References
1. python.org

2. Code Academy

3. tutorialsPoint.com

4. PythonChallenge.com

5. Google’s Python Class

6. LearnPython.org

7. layak.in

You might also like