Python Code Tutorials


articles/detect-gender-from-faces-using-opencv-in-python.png
Gender Detection using OpenCV in Python

Learn how to perform gender detection on detected faces in images using OpenCV library in Python.

articles/making-a-telegram-bot-in-python.PNG
How to Make a Telegram Bot in Python

Learn how to use Telegram API and python-telegram-bot wrapper to build a Telegram Bot in Python.

articles/predicted_age.jpg
Age Detection using OpenCV in Python

Learn how to predict someone's age from his front face picture using OpenCV library in Python

articles/paraphrasing-tutorial-with-transformers-in-python.png
How to Paraphrase Text using Transformers in Python

Explore different pre-trained transformer models in transformers library to paraphrase sentences in Python.

articles/css-and-script-files-extractor-in-python.PNG
How to Extract Script and CSS Files from Web Pages in Python

Building a tool to extract all Javascript and CSS files from a web page in Python using requests and BeautifulSoup.

articles/make-an-age-calculator-tkinter-python.jpg
How to Make an Age Calculator in Python

Learn how you to build an age calculator that calculates your age based on your birthday using Tkinter and datetime library in Python.

articles/ai-online-code-generators.jpg
3 Best Online AI Code Generators

Explore the top 3 AI code generators—CodeConvert, ZZZ Code AI, and CodingFleet. Compare their features, pros, and cons to find the best tool for your coding needs, with CodingFleet leading for its advanced features and versatility.

articles/extract-pdf-metadata-in-python.jpg
How to Extract PDF Metadata in Python

Learn how to use pikepdf library to extract useful information from PDF files in Python.

articles/sending-emails-using-python.PNG
How to Send Emails in Python

Learn how to use Python's standard library smtplib and email modules to connect to any SMTP server and send emails in Python automatically.

articles/calculate-rouge-score-in-python.jpg
How to Calculate ROUGE Score in Python

Learn what is the ROUGE score and how to calculate it using rouge_score library in Python.

articles/using-shodan-api-in-python.PNG
How to Use Shodan API in Python

Learn how to use Shodan API to make a script that searches for public vulnerable servers, IoT devices, power plants and much more using Python.

articles/create-a-maze-game-with-python.jpg
How to Make a Maze Game in Python

Learn how to build a maze game with Pygame library in Python.

articles/speech-recognition-using-huggingface-transformers-in-python.jpg
Speech Recognition using Transformers in Python

Learn how to perform speech recognition using wav2vec2 and whisper transformer models with the help of Huggingface transformers library in Python.

articles/pacman-game-in-python.jpg
How to Make a Pacman Game with Python

Learn how to create a Pacman game using Python and Pygame with this comprehensive tutorial. Covering everything from setting up your environment, creating game characters and components, to running the game, this guide provides step-by-step instructions to build a fully functional Pacman game.

articles/make-a-platformer-game-in-python.jpg
How to Create a Platformer Game in Python

Learn how to build a platformer game from scratch using PyGame library in Python.

articles/assembly-disassembly-and-emulation-in-python.PNG
Assembly, Disassembly and Emulation using Python

Learn how to use Keystone engine, Capstone engine and Unicorn engine to assemble, disassemble and emulate machine code (ARM, x86-64 and more) in Python