File 01 Page 1-16 Project Sample
File 01 Page 1-16 Project Sample
Eoocalion
Culture
A PROJEC T REPOR T
ON
BAKERY MANAGE MENT SYSTEM
CLASS: 12™
II Amrut•m Tu Vldhy• "
Shree K. G. Dholakiy a School
11\Jt Bala/I hall, 1MHt Ring Road, Ra}ltot.
Ph.1 0281 • 2 333 000
M,a,a•dby
Gyangan ga Educatio n Society
( Reg. No.111711, Gujarat)
, PR ~
'<r
.., 1,,/..
Certificate ~ RAJK01 · M,
0 :r
_,, s ;
~
This is to certify that Project File of RMlfWA-1, Sci d)Q of( ls'-~__!_ - J
invostiguto ubout the subject matter and related data collection and
invesligutlon has been completed solely, sincen=Jyand satisfactorily.
~ (S:;-:re)
:·:·, 11: , ·,:,
Date: _ _ _ __
2. OBJECTIVE 2
3. PYTHON'S OVERVIEW 3
4. PYTHON'S ADVANTAGES 6
AND DISADVANTAGES
5. MYSQL OVERVIEW 8
6. MODULES 9
9. OUTPUT 22
13. CONCLUSION 30
14. BIBLIOGRAP HY 31
INTH.OD UCTION
1
OBJECTIVE
Features To Look
For In A Robust
Bakery Management
System
2
PYTHON OVERVIEW
ta
python"
Python is a high-level, interpreted, interactive, and object-oriented
scripting language. Python is designed to be highly readable. It uses
English keywords frequently where as other languages use punctuation,
and it has fewer syntactical constructions than other languages.
3
Python is an open-source and cross-platform programming language.
It is available for use under the Python Software Foundation
License (compatible with GNU General Public License) on all the
major operating system platforms Linux, Windows, and Mac OS.
4
HISTORY OF PYTHO N
' r ~
PYTHON'S ADVANTAGES
6
-
PYTHON'S DISADVANTAGES
7
MY SO L OV ER VIE W
8
MODULES
• S0Lite3:
A standalone command-line shell program called SQLite3 is
provided in SQLite's distribution. It can be used to create a
database, define tables, insert and change rows, run queries,
and manage a. SQLite database file. It also serves as an
example for writing applications that use the SQLite library.
• TIME:
Python time module allows to work with time in Python. It allows
functionality like getting the current time, pausing the Program
from executing, etc. So before starting with this module, we need
to import it.
9
HARDWARE AND SOFTWARE REQUIRED
HARDWARE
!.LAPTOP
2.COMPUTER
SOFTWARE
1. PYTHON
2. MYSQL
3. PYTHON CONNECTOR
10
SOURCE CODE
'"
facilities: messages, view menu
1. admin login : add new item I delete item I change item price
"'
import sqlite3
import time
connection = sqlite3.connect('menu.db')
cursor = connection.cursor0
cursor.execute("'
CREATE TABLE IF NOT EXISTS Menu([product_id]
INTEGER PRIMARY KEY AUTOINCREMENT,
[product_name) TEXT,
[product_price] INTEGER)"' )
11