Python Projects
IP Address Information using Python
January 4, 2025
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?
December 31, 2024
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 🧡
December 21, 2024
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
November 30, 2024
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
October 25, 2024
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
October 24, 2024
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
October 19, 2024
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
October 11, 2024
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
October 10, 2024
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
September 21, 2024
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
February 19, 2024
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
December 10, 2023
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
October 26, 2023
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
October 16, 2023
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
August 29, 2023
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
August 3, 2023
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?
August 3, 2022
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
July 23, 2022
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
July 8, 2022
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
April 3, 2022
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
February 26, 2022
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?
December 17, 2021
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
December 11, 2021
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
December 8, 2021
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
December 7, 2021
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
December 7, 2021
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
December 7, 2021
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
November 8, 2021
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
March 12, 2021
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
October 25, 2019
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
October 5, 2019
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…