May 10, 2025
Trending Now
  •    Registration with image upload Java Jdbc(Down...

  •    Touchable shop Pos system using Java...

  •    Build Your First Responsive Login Form Using H...

  •    Java Beans...

  •    Java String Methods...

Click Here to Buy Our Courses

  • Home
  • About Us
  • Java
    • Java for Beginners
    • Java Projects
    • Java Console Application Projects
  • C#.net
  • Angular
  • Reactjs
    • ReactJS Introduction
  • Node JS
  • Android Studio
  • Jsp
  • Servlet
  • python
    • Python for beginners
  • Spring boot
  • Laravel 8
  • Laravel 9
  • Asp.net MVC
  • php
  • Flutter
  • Free Projects
  • Contact us
  • Privacy Policy

Restaurant Inventory System Python

By admin
August 28, 2020
in :  python
0
1,741

The Restaurant Point of  sales System is developed using python. The project is built to manage  items and transactions. To make a new transaction, fields such as: Item and ingredients , qty and payment needs to be selected. If you like to learn point of sales systems step by step, this is the right place to learn from the beginning. …

Read More

Radio button in python tkinter

By admin
August 28, 2020
in :  Uncategorized
0
887

This tutorial will teach you how to make a Radio button in python tkinter step by step from tkinter import * from tkinter import ttk def selection(): selection = radio.get() selection1 = radio1.get() if(selection==1): item = "C" elif(selection == 2): item = "C++" elif (selection == 3): item = "Java" if (selection1 == 1): item1 = "C#" elif (selection1 == …

Read More

Inventory Management System using Python tkinter

By admin
August 27, 2020
in :  python
0
2,926

The inventory management is developed by python tkinter.  The project is built to manage  items and transactions. To make a new transaction, fields such as: Fried rice name, qty and payment needs to be selected. If you like to learn point of sales systems step by step, this is the right place to learn from the beginning.

Read More

Currency converter using Python tkinter

By admin
August 24, 2020
in :  python
0
2,944

This tutorial will teach you how to make a currency converter using python.

Read More

Python Gui Last Insert ID Python Mysql

By admin
August 24, 2020
in :  python
0
1,535

This tutorial will teach you how to get the Last Inserted id in python mysql. i will teach step by step.it will help you to make a inventory system. from tkinter import * from tkinter import messagebox import mysql.connector def Ok(): empname = e2.get() phone = e3.get() salary = e4.get() mysqldb=mysql.connector.connect(host="localhost",user="root",password="",database="payrollpy") mycursor=mysqldb.cursor() try: sql = "INSERT INTO records (id,empname,phone,salary) VALUES …

Read More

View records table using Python tkinter mysql

By admin
August 24, 2020
in :  python
0
3,720

This tutorial will teach you how to View records using python mysql to the table. import tkinter as tk from tkinter import ttk import mysql.connector def show(): mysqldb = mysql.connector.connect(host="localhost", user="root", password="", database="smschool") mycursor = mysqldb.cursor() mycursor.execute("SELECT id,stname,course,fee FROM record") records = mycursor.fetchall() print(records) for i, (id,stname, course,fee) in enumerate(records, start=1): listBox.insert("", "end", values=(id, stname, course, fee)) mysqldb.close() root = …

Read More

Star Rating System in jQuery PHP MYSQL

By admin
August 21, 2020
in :  php
0
7,495

This tutorial will teach you how to make Star Rating System in jQuery PHP MYSQL. The rating management system is made to rate an individual’s skillset accordingly. Database connection db_connection.php <?php $servername = "localhost";//Server Name $username = "root";//Server User Name $password = "";//Server Password $dbname = "billdb";//Database Name //Create DB Connection $conn = mysqli_connect($servername,$username,$password,$dbname); ?>   add_rate.php <html> <head> <link …

Read More

Search using python tkinter mysql

By admin
August 20, 2020
in :  python
0
3,732

This tutorial will teach you how to search using python Gui application connect with mysql. from tkinter import * import mysql.connector def Ok(): global myresult studname = e1.get() coursename = e2.get() fee = e3.get() mysqldb=mysql.connector.connect(host="localhost",user="root",password="",database="smschool") mycursor=mysqldb.cursor() try: mycursor.execute("SELECT * FROM record where id = '" + studname + "'") myresult = mycursor.fetchall() for x in myresult: print(x) e2.delete(0, END) e2.insert(END, …

Read More

Insert Records using Python tkinter mysql

By admin
August 19, 2020
in :  python
0
3,710

This tutorial will teach you how Insert  the Records using Python and mysql. Establish the database connection.   from tkinter import * from tkinter import messagebox import mysql.connector def Ok(): studname = e1.get() coursename = e2.get() feee = e3.get() mysqldb=mysql.connector.connect(host="localhost",user="root",password="",database="smschool") mycursor=mysqldb.cursor() try: sql = "INSERT INTO record (id,stname,course,fee) VALUES (%s, %s, %s, %s)" val = ("",studname,coursename,feee) mycursor.execute(sql, val) mysqldb.commit() messagebox.showinfo("information", …

Read More

Fish inventory system using python tkinter

By admin
August 18, 2020
in :  python
0
927

This tutorial will teach you  to make a small Fish shop Inventory  system using python. The following  system will use to manage the Fish shop. import tkinter as tk OptionList = [ "kg", "gm", ] def Ok(): item = variable.get() result = float(e1.get()) if item == "kg": tot = result * 120 else : tot = result/1000 * 120 nsalText.set(tot) …

Read More
1...424344...49Page 43 of 49

Recent Posts

  • Registration with image upload Java Jdbc(Download Source code)
  • Touchable shop Pos system using Java
  • Build Your First Responsive Login Form Using HTML and CSS FlexBox
  • Build Crud API with Laravel 12
  • laravel 12 image upload tutorial

© Copyright 2020, All Rights Reserved Powered by Tutussfunny
x