Python Projects

IP Address Information using Python

IP Address Information using Python

In this tutorial, we are going to find the IP address of the client using the socket module in Python. Every laptop, mobile, tablet, etc.., have their unique IP address. We will find it by using the socket module.…
How to Convert a PDF to Document using Python?

How to Convert a PDF to Document using Python?

To convert PDF files to Doc format you can use a Python module and it will make it straightforward for you in the conversion of pdf to doc. In this article, We’ll explore…
Merry Christmas using Python 🧡

Merry Christmas using Python 🧡

Code :  from colorama import Fore def heart_shape(msg=”Merry Christmas”):     lines = []     for y in range(15, -15, -1):         line = “”  …
Remove Background from an image using Python

Remove Background from an image using Python

In this article, we’ll learn how to remove the background of an image using Python. Pillow module: The Pillow library, a derivative of the Python Imaging Library (PIL), aids in giving Python interpreter…
Colorful QR Code using Python

Colorful QR Code using Python

import pyqrcode from PIL import Image link = input(“Enter anything to generate QR : “) qr_code = pyqrcode.create(link) qr_code.png(“QRCode.png”, scale=5) Image.open(“QRCode.png”)
Plots using Python

Plots using Python

1. Line Plot: #clcoding.com import matplotlib.pyplot as plt ​ # Sample data x = [1, 2, 3, 4, 5] y = [2, 4, 6, 8, 10] ​ # Create a…
Create audio book using python

Create audio book using python

from gtts import gTTS import os def create_audiobook(text_file, output_file):     with open(text_file, ‘r’, encoding=’utf-8′) as file:         text = file.read()     tts = gTTS(text=text, lang=’en’)…
Density plot using Python

Density plot using Python

 import seaborn as sns import matplotlib.pyplot as plt import numpy as np data = np.random.normal(size=1000) sns.kdeplot(data, fill=True, color=”blue”) plt.title(“Density Plot”) plt.xlabel(“Value”) plt.ylabel(“Density”) plt.show()
Python Mastery: 100 Quizzes from Beginner to Advanced with Detailed Solutions: 100 Python Programming Language Quiz with Solutions

Python Mastery: 100 Quizzes from Beginner to Advanced with Detailed Solutions: 100 Python Programming Language Quiz with Solutions

Introduction Welcome to “100 Python Programming Language Quiz with Solutions”! Whether you’re just starting your journey into the world of programming or looking to enhance your Python skills, this book…
Convert PDF file to Excel file using Python

Convert PDF file to Excel file using Python

In this article, we will see how to convert a PDF to Excel or CSV File Using Python. It can be done with various methods, here are we are going…
Summarize Text in Python using ChatGPT

Summarize Text in Python using ChatGPT

In this video we integrate Chat GPT with Python in order to do three different NLP related tasks around text clean up and text summarization. First we build a sentence…
Create a Voice Recorder using Python

Create a Voice Recorder using Python

Python can be used to perform a variety of tasks. One of them is creating a voice recorder. We can use python’s sounddevice module to record and play audio. This module along…
Generate QR Code using qrcode in Python

Generate QR Code using qrcode in Python

A Quick Response Code or a QR Code is a two-dimensional bar code used for its fast readability and comparatively large storage capacity. It consists of black squares arranged in a square grid on…
Download YouTube videos using python for beginners 

Download YouTube videos using python for beginners 

How to download YouTube videos using python for beginners – In this tutorial we will be using the pytube module in python to download videos from YouTube using a direct…
Simple GUI calculator using Tkinter in Python

Simple GUI calculator using Tkinter in Python

In this tutorial, we are going to create a simple GUI calculator using the Tkinter module. Tkinter is builtin the Python module for developing the GUI application. It’s easy to use and comes with…
Extract Text from PDF with Python

Extract Text from PDF with Python

For this tutorial, I’ll be using Python 3.6.3. You can use any version you like (as long as it supports the relevant libraries). You will require the following Python libraries…
How To Write Android Apps In Python?

How To Write Android Apps In Python?

Want to build Android Apps in Python? More than 3 billion devices in this world run on android. That makes it one of the most or probably the most important…
Download YouTube videos in Python

Download YouTube videos in Python

We can use the package Pytube to download YouTube videos in a Python script. It’s a free tool you can install from the PyPI repository. You can also specify the…
Object Detection in 10 lines of code using Python

Object Detection in 10 lines of code using Python

In the following tutorial, we will understand how to perform Object Recognition in the Python programming language using the ImageAI library. We will create a basic object recognition model using the ImageAI library in…
Convert Text into Audio Using Python

Convert Text into Audio Using Python

Text to speech converter is a technology used to convert text into human voice generated from the computer. Speech recognition also makes use of artificial intelligence (AI). In this article,…
Build an Asteroids Game With Python and Pygame

Build an Asteroids Game With Python and Pygame

Do you want to create your own computer games but like Python too much to abandon it for a career as a game developer? There’s a solution for that! With…
How to Create a Tic-Tac-Toe Game in Python?

How to Create a Tic-Tac-Toe Game in Python?

Gaming is one of the entertainment that humans have. We can find different types of games on the web, mobile, desktop, etc. We are not here to make one of…
Python Bootcamp 2021: Build 8 Real World Python Projects

Python Bootcamp 2021: Build 8 Real World Python Projects

Description The most appealing characteristic of Python is that it is an interpreted language. Interpreted languages are the programming languages that do not need to be compiled to run. An…
Real time Number Plates Identifier and Counter in Python

Real time Number Plates Identifier and Counter in Python

Real time Number Plates Identifier / Detector and count vehicle is Develop with Technology of Image processing. This is automated System to Count and identified Number of plates on road…
Sending Emails With Python

Sending Emails With Python

Sending a Plain-Text Email Before we dive into sending emails with HTML content and attachments, you’ll learn to send plain-text emails using Python. These are emails that you could write…
Football Player and Team Detector in Python with Artificial Intelligence

Football Player and Team Detector in Python with Artificial Intelligence

Advance Football Player Detector in Python with Artificial Intelligence Tutorial & Source code Download . Advance Social Distancing Detector is Develop in Python with the help of artificial intelligence. with…
Racing Game using openCV and Numpy libraries of Python

Racing Game using openCV and Numpy libraries of Python

ree Download Racing Game with Steering Wheel using OpenCV and Numpy Libraries of Python complete source code.This is Gesture controlling game which is developed in Python Hand Gesture Or paper…
Build a Command-Line To-Do App With Python and Typer

Build a Command-Line To-Do App With Python and Typer

Building an application to manage your to-do list can be an interesting project when you’re learning a new programming language or trying to take your skills to the next level. In this…
Automated Multiple Face Recognition AI using Python – Python Best Courses

Automated Multiple Face Recognition AI using Python – Python Best Courses

Learn about OpenCV Basics, Face Recognition in an image, Automation of Face Recognition System using User Inputs What you’ll learn Automated Multiple Face Recognition AI using Python – Python Best…
Restaurant Billing System in python With Source code

Restaurant Billing System in python With Source code

Free Download Advance Restaurant Billing Management  system in Python open source Application with  Source code and Database . Advance Restaurant Billing Management is customized Enrollment with Billing Management system that can…
Auto Face Detector Software System with source code

Auto Face Detector Software System with source code

Free Download Auto Face Detector System open source software in c# desktop Application with Source code and Database . Its Totally free of cost This desktop application 100% working smooth…
Back to top button