Nayandeep
Nayandeep
PROJECT REPORT ON
BOARD ROLL NO :
CLASS : XII A
ROLL NO : 18
PGT (CS)
Page 1 of 34
VIDYA BHARTI CHINMAYA VIDYALAYA
CERTIFICATE
Signature:
Page 2 of 34
TABLE OF CONTENTS [ T O C ]
01 ACKNOWLEDGEMENT 04
02 INTRODUCTION 05
06 FLOW CHART 15
07 SOURCE CODE 16
08 OUTPUT 22
09 TESTING 27
11 INSTALLATION PROCEDURE 29
12 BIBLIOGRAPHY 30
Page 3 of 34
ACKNOWLEDGEMENT
Apart from the efforts of me, the success of any project depends largely on
the encouragement and guidelines of many others. I take this opportunity to express
my gratitude to the people who have been instrumental in the successful completion
of this project.
I express deep sense of gratitude to almighty God for giving me strength for
the successful completion of the project.
The guidance and support received from all the members who contributed
and who are contributing to this project, was vital for the success of the project. I am
grateful for their constant support and help.
Page 4 of 34
PROJECT ON COURIER SERVICE SYSTEM
INTRODUCTION
Now a days Couriers are essential for the mobile world, Therefore there
comes a need for managing the courier service in places. so developers use DBMS
and programming languages like python to create a software which could manage
the courier services from a place for several parts of the world and to begin with the
introduction of my project this is a small project (a software) developed by me to
manage the courier service and the name of my courier service system is BATMAN
COURIER SERVICE
The objective of this project is to let the students apply the programming knowledge
into a real- world situation/problem and exposed the students how programming
skills helps in developing a good software.
Page 5 of 34
SYSTEM DEVELOPMENT LIFE CYCLE (SDLC)
Page 6 of 34
PHASES OF SYSTEM DEVELOPMENT LIFE CYCLE
INITIATION PHASE
Page 7 of 34
SYSTEM CONCEPT DEVELOPMENT PHASE
Page 8 of 34
PICTORIAL REPRESENTATION OF SDLC:
PLANNING PHASE
Page 9 of 34
management planning.
Page 10 of 34
REQUIREMENTS ANALYSIS PHASE
This phase formally defines the detailed functional user requirements using
high-level requirements identified in the Initiation, System Concept, and Planning
phases. It also delineates the requirements in terms of data, system performance,
security, and maintainability requirements for the system. The requirements are
defined in this phase to a level of detail sufficient for systems design to proceed.
They need to be measurable, testable, and relate to the business need or
opportunity identified in the Initiation Phase. The requirements that will be used to
determine acceptance of the system are captured in the Test and Evaluation Master
Plan.
Further define and refine the functional and data requirements and document
them in the Requirements Document,
Complete business process reengineering of the functions to be supported
(i.e., verify what information drives the business process, what information is
generated, who generates it, where does the information go, and who
processes it),
Develop detailed data and process models (system inputs, outputs, and the
process.
Develop the test and evaluation requirements that will be used to determine
acceptable system performance.
DESIGN PHASE
Page 12 of 34
components and interfaces, then expand design layouts as they identify and link
larger systems and connections. Contemporary design techniques often use
prototyping tools that build mock-up designs of items such as application screens,
database layouts, and system architectures. End users, designers, developers,
database managers, and network administrators should review and refine the
prototyped designs in an iterative process until they agree on an acceptable design.
Audit, security, and quality assurance personnel should be involved in the review
and approval process. During this phase, the system is designed to satisfy the
functional requirements identified in the previous phase. Since problems in the
design phase could be very expensive to solve in the later stage of the software
development, a variety of elements are considered in the design to mitigate risk.
These include:
Page 13 of 34
DEVELOPMENT PHASE
Testing as a deployed system with end users working together with contract
Page 14 of 34
personnel
Page 15 of 34
Operational testing by the end user alone performing all functions.
Requirements are traced throughout testing, a final Independent Verification &
Validation evaluation is performed and all documentation is reviewed and
accepted prior to acceptance of the system.
IMPLEMENTATION PHASE
This phase is initiated after the system has been tested and accepted by the
user. In this phase, the system is installed to support the intended business
functions. System performance is compared to performance objectives established
during the planning phase. Implementation includes user notification, user training,
installation of hardware, installation of software onto production computers, and
integration of the system into daily work processes. This phase continues until the
system is operating in production in accordance with the defined user requirements.
Page 16 of 34
Flow chart
Page 17 of 34
The imported file
b_courier_menu
2. billing procedure
If choice Elif
If choice is
is 2: choice
1:
is 3:
then then
Or
Page 18 of 34
Get the name of the city Display the billing
of the user procedure of
‘batman courier
Display the name of service’
courier service boys in the
city
Page 19 of 34
Source code:
cust1=conn.cursor()
print('Hi')
Page 20 of 34
print('1.CREATE YOUR COURIER SERVICE ACCOUNT')
print('2.LOGIN')
if choose==1:
passwd1=input('Confirm password:')
conn.commit()
import B_COURIER_MENU
elif choose==2:
if cust1.fetchone() is None:
else:
import B_COURIER_MENU
B_COURIER_MENU:
cust1=conn.cursor()
Page 21 of 34
for i in range(0,76):
print('2.billing_procedure')
print('3.courier_service_boys')
print('4.exit')
if choice==1:
print('A.courier placement')
if sect=="A":
print('COURIER-ORDER')
conn.commit()
print(cust1.rowcount,'courier (s)
placed')
print('=======================================================
========================================================')
elif sect=="B":
Page 22 of 34
S=str(input('do you want to see your
courier_order''(yes...\..no):'))
if S=="yes":
order=cust1.fetchall()
for j in order:
print(j)
print('=======================================================
========================================================')
else:
print('Thank you')
print('=======================================================
=======================================================')
elif choice==2:
print('BILLING PROCEDURE:
[weight_in_kgs......AND.................cost_in_rupees]')
bill=cust1.fetchall()
for x in bill:
print(x)
print('=======================================================
========================================================')
if choice==3:
Page 23 of 34
city1=input('enter your city name:')
boys=cust1.fetchall()
for y in boys:
print(y)
print('=======================================================
========================================================')
elif choice==4:
quit()
Page 24 of 34
Page 25 of 34
Output:
Page 26 of 34
Page 27 of 34
Page 28 of 34
Page 29 of 34
Page 30 of 34
TESTING
Page 31 of 34
HARDWARE AND SOFTWARE REQUIREMENTS
SOFTWARE REQUIREMENTS:
I. Windows OS
II. Python
Page 32 of 34
INSTALLATION PROCEDURE
STEP 2: Run the file create table courier in python idle 3.7(64-bit)
STEP 4:Run the file create table couriers2 in python idle 3.7(64-bit)
STEP 6:Run the file create table couriers3 in python idle 3.7(64-bit)
('The billing procedure values are inserted into the table couriers2')
STEP 10:Run the file courier service boys in python idle 3.7(64-bit)
('The couier service boys bio data are inserted into the table couriers3')
(1.first ,The user should create an account or login with his existing account,
Page 33 of 34
BIBLIOGRAPHY
***
Page 34 of 34