Python Mini and Major Projects with source code

Billing Management System using Python introduction: The Billing software using python is a simple yet effective Python application designed to facilitate the billing process for grocery stores. Developed using the Tkinter library, a standard GUI toolkit for Python, this project offers an intuitive graphical interface for both customers and store owners to manage transactions seamlessly. […]

Medical Management System using Python with Complete Source code [By using Flask Framework] Introduction Hospital Management System The Hospital Management System is a web-based application designed to streamline the management of medical practices, providing a comprehensive platform for handling patient records, doctor information, appointment scheduling, and common administrative tasks. Built on the Flask framework with […]

Building a Simple 2048 Game in Python with Tkinter Introduction In this blog post, we’ll walk you through the process of building a simplified version of the popular 2048 game, where the objective is to combine numbered tiles on a grid to reach the elusive tile with the number 2048. Don’t worry if you’re new […]

Valentine Project Using Python Introduction Valentine’s Day, a day of love and affection, is just around the corner. Why not celebrate it in a unique way this year? Let’s create a beautiful animation of hearts using Python’s Turtle module. This project is not only fun but also a great way to learn and understand Python […]

Drawing Rose Using Python Turtle Introduction: Python is unique in the world of programming because it can do so many things and can also make art come to life through code. Are you a budding artist or a curious coder who wants to combine technology and art? You’re in for a treat! We’ll have a […]

Binary to decimal & decimal to binary converter Introduction: The “Binary-Decimal Converter” Python project is an ideal starting point for individuals venturing into the world of programming, especially those who are new to Python. This project introduces the basics of graphical user interface (GUI) development using the tkinter library while offering a practical application in […]

Easy projects in python- Beginner friendly Introduction : One of the best ways to learn Python is by working on mini-projects that can be completed in a short period of time. They are a great way to practice your coding skills and learn new concepts. In this blog, we will discuss a simple Python project […]

Weather App Using Django in Python Introduction : This blog post will show you how to make a weather app using Django. Django is a Python web framework that makes it easy to build web applications. We will use the OpenWeatherMap API to get weather data for different cities.  It is a high-level framework, which […]

Indian Flag Using Python Turtle Introduction: In this project, we will show how to use Turtle graphics using Python to make our Indian flag. Turtle is a pre-installed library in Python used to design a virtual canvas. In simple language, it’s a tool that helps you to draw on a board in your program with […]

NotePad Using Python Introduction: tkinter is a GUI library provided by Python to create GUI applications. In this project, with the help of this library, we are going to build up the notepad, a text editor. The notepad will have two main menu items: File & edit. The functionalities of these menu items will also […]

Get Info of phone number using python Hello Curious Coders, In this project we are going to work on another python predefined library named “phonenumbers” which helps us to extract the information of a phone number like carrier(service provider name) , region it belongs to etc,.Let’s get into it… Code import phonenumbers from phonenumbers import […]

Car Racing Game Using Python Introduction: In this project, we have created a “Car Racing Game” by using the pygame module in Python. It is one of the most efficient libraries for game development using python. Starting with an introductory window providing two options that are, to start or to quit, to the user, following […]

Convert Image to PDF Using Python GUI Introduction  The code given is a simple Graphical User Interface (GUI) application created using the Tkinter library in Python. The application for helping any user convert multiple images into a single Portable Document Format (PDF) file. The user does the selection of images they want to convert and […]

This Library Management System Python GUI Introduction:  This Library Management System project is a Python-based solution that utilizes the tkinter library to create a graphical user interface (GUI). Its main goal is to simplify and streamline the process of managing books and library members. The code includes a class named “Library Management,” which holds several […]

Creating GUI Piano Using Python​ Introduction: In this project, we are going to build a GUI piano by using different libraries of Python. With the help of the tkinter library, we will create the GUI for the project. As the name suggests, several keynotes of the piano will be there and by clicking them the […]

Get Instagram Account Details using Python Introduction Hello Curious Coders, In this Project we are going to fetch the details of an Instagram Account. There is pre defined package in python named instaloader which is going to allow us to scrape through the instagram account of someone. Let’s get into it….. Source Code: # Import […]

Draw Pikachu with Python Introduction: In Python, the  turtle is one of the most exciting libraries which enables the user to create pictures on a virtual canvas, with the help of the in-built functions of this library we can see the magic of art. In this project, with the help of this library, we will […]

Create ChatGPT using Python Introduction: In This article, we’ll show you how to create a chatbot using OpenAI python. OpenAI is an artificial intelligence research organization that provides a platform for building and training machine learning models. ChatGPT is one of the most popular Ai Models which can be used to generate text on the […]

Detect Plagiarism in files using Python Introduction Hello Curious Coders,In this project we are going to discuss how to check the plagiarism between thecontents present in two different text files. In python this can be done usingpredefined package difflib but we are going to check it manually. Let’s get into it…. Code # import required […]

Language Detection using Python Introduction Hello Curious Coders, In this project, we are going to learn how to detect the language in text using Python with the help of libraries like long detect. This parses through the basic functions of langdetect library and is going to detect the sentence of a language. Code # Importing […]

Convert Black & white image in Colour using python Introduction Hello Curious Coders, In this project we are going to convert the Blacka and White Image to Colour Image using Python. To do so in python we have a popular package named as CV2 which is most used to perform image related operations. Code # […]

Photo Collage Maker using Python Introduction Hello Curious Coders, In this Project we are going to discuss how to form a collage of images using python. The Photo Collage is a group of multiple photographs or images arranged and displayed together in a single composition. The PIL packeg is used to generate a collage in […]

WordCloud using Python Hello Curious Coders, WordCloud is a graphical representation technique where the words are displayed based on their frequency in the text provided. This is used when one want to analyze and find out the frequent words of a paragraph just by looking at an image. So here is the code to implement […]

Birthday Wishes Using Python Introduction Hello Curious Coders, In this Project we are going to generate simple Birthday wishes using turtle package in python. Turtle is a package in python which is responsible to produce some graphics. So here is the Code…. Code import turtle # Create a turtle object my_turtle = turtle.Turtle() # Set […]

OTP verification using Python Introduction: In this project, we have made an OTP verification System with Help of various libraries. First of all, we made use of Tkinter for creating the GUI for our project. Next to that, to generate the random Numbers as OTP we used a random module. At last, forgetting and checking […]

Quiz Application Using Python Introduction: In this project, we have built a Quiz Application with the help of the  tkinter module in Python. In this, users will be provided with a GUI in order to select one of the correct options. As the user will choose the correct option the point will increase. Let’s look forward […]

Advanced BMI Calculator Using python Introduction: In this project, we will build up an Advanced BMI Calculator by the tkinter library of Python. It is the standard GUI library of Python. With the help of sliders, the user can mention their height and weight, by clicking the report button they can see their calculated BMI and […]

Scientific calculator using Python Introduction: In this project, we build up the scientific calculator using the tkinter library of Python. It is the standard GUI library for Python. With its help, we prepared the GUI for the project, and to add the functionalities of the scientific calculator, we used a math module. So, scroll down […]

Draw Doraemon With Python Introduction: In Python, the turtle is one of the most interesting libraries which enables the user to create pictures on a virtual canvas, with the help of the in-built functions of this library we can see the magic of art. In this project, with the help of this library, we will […]

Convert Text to Speech Using Python Introduction: In this project, we will convert the text into speech using Python. It will be made possible by using the gTTS module in Python. It is a Python library and CLI tool to interface to Google Translate Text to speech API. Let’s get into this and make some […]

GUI alarm Clock Using Python Introduction: In this project, a GUI alarm clock has been created with help of the “Tkinter” module. Tkinter is a standard GUI library for python. With the help of this module, we have created a simple GUI interface for setting the alarm details. As per the requirement, the alarm clock’s […]

Flappy Bird Game Using Python Introduction: In this project, we have created a game using the “Pygame” module in python. The game is named “Flappy Bird”. Most of you have played this game on your mobile phones and now it’s time to code this game by yourself. If you haven’t played this before, not an […]

Hangman Game using python Introduction:  In this project, we have created a Hangman game with the help of the “Pygame” module in Python language. Basically, it is a guessing game. The player tries to guess it by suggesting letters within a certain number of guesses. If the guessed word is correct within the given limit […]

Sudoku Game Using Python Introduction: In this project, we have created a Sudoku Game with the help of a module named “Pygame”. Basically, in this, a random grid will be produced containing digits from 1 to 9 with the help of an API. To play this game: Each row, column, and square needs to be […]

GUI-Based Internet Speed Test Using Python Introduction: python language is one of the most preferred programming languages in today’s scenario of the data science field. Because of its simple syntax and vast libraries/packages/modules, implementing various applications/programs/codes is very handy. Explanation: GUI is one of the best interfaces for a user to interact with a machine/computer. […]

Ping pong game using python Introduction: In this project, we have tried to create a ping pong game via using the “pygame” module of python. If we talk about the game then, in this game, there are two sides considered as player1 and player2, and a ball is present which needed to get hit by […]

Snake Game Using Python Introduction: In this project, we have created a snake game using a python module named  “Pygame”. Basically, in this game, the user will control the movement of the snake through the keyboard arrows and direct the snake in the direction of food, as the snake eats the food the size of […]

Creating A Water Mark on Images using Open CV We are now making watermarking images using OpenCV in Python in this project. Watermark is looking left Text/logo onto the image. This helps us to identify the actual developer of an artist. Watermarks are used to protect the copyright of the picture. watermarks sometimes work as […]

Radha Krishna Drawing using Python Installation: In this article, we’ll show you how to draw a Radha Krishan painting using Python turtle graphics. python has a turtle module. turtle is a popular way for introducing programming to kids. About Turtle: Turtle graphics is a popular way for introducing programming to kids. It was part of […]

GUI Digital Clock Using Python In this Project, I will show you. How to Create Graphical User Interface of Digital Clock and How to Design your clock beautifully. We are Using Tkinter, which is a framework of Python Programming Language. In which we can design your outer part of the project or an application. tkinter […]

GUI Stopwatch Using Python Introduction: We will build the GUI(graphical user interface) Stopwatch application usingpython with Tkinter. Tkinter is a python GUI package. Tkinter is the fast andeasiest way to create GUI applications. We will create start, pause, stop and quit buttons to control our application. Project Requirements: For writing code, there must be a […]

Turtle Patterns In Python ntroduction: In this article, we will see how to draw patterns using Python turtle graphics. python has a turtle module. turtle is a popular way for introducing programming to kids.  About Turtle: Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming […]

Rock Paper Scissor Game Using Python Introduction: Python is a high-level programming language and it is used to developgames as well. In this, we have created a command-line Rock Paper Scissorsgame. According to the rules, the user gets the chance to pick the optionfirst, and then the computer’s choice will be generated randomly and so […]

Drawing a Pattern Using Turtle Python Introduction: In this article, we will see how to draw patterns using Python turtle graphics. python has a turtle module. turtle is a popular way for introducing programming to kids.  About Turtle: Turtle graphics is a popular way for introducing programming to kids. It was part of the original […]

Convert Image Into Sketch using Python In This Article, we’ll learn how to convert an image into a pencil sketch using python and CV2. CV2 is a python Module for OpenCV python. OpenCV has a function to read video, which is cv2. VideoCapture() also we can access the webcam using the CV2. In this Tutorial […]

Send Whatsapp Messages Using the Python PyautoGUi library Want to automatically send WhatsApp messages using Python? The pyautogui library makes it easy! you can Automatically message your friends using Python and the pyautogui library.  What is pyautogui ? The pyautogui library is a powerful tool for automating mouse and keyboard interactions with other applications. Using […]

find wifi Passwords Using Python This article will show you how you can find wifi passwords using python. if you forget your wifi password so this python script can find your wifi password. To find the already connected wifi passwords we need to execute two commands on the terminal so in this program we’re running […]

All Coding Handwritten Notes

Browse Handwritten Notes