Python Code Tutorials


articles/deleting-emails-in-python.PNG
How to Delete Emails in Python

Learn how you can use IMAP protocol to delete specific mails in your email account in a selected mailbox using the built-in imaplib module in Python.

articles/listing-files-and-directories-in-ftp-server-using-python.PNG
How to List all Files and Directories in FTP Server using Python

Listing all files and directories in an FTP server using LIST, NLST and MLSD FTP commands in Python using the built-in ftplib module.

articles/monitoring-directory-size-in-python.PNG
How to Get the Size of Directories in Python

Calculating the size of a directory in bytes in Python and plotting a pie using matplotlib to see which subdirectory takes most size.

articles/phone-number-tracker-with-python_bGexc6p.jpg
How to Make a Phone Number Tracker in Python

Learn how to build a phone number tracker in Python using phonenumbers, OpenCage and folium libraries.

articles/get-domain-information-in-python.PNG
How to Get Domain Name Information in Python

Learn how to validate domain names using WHOIS, as well as getting domain name information such as domain registrar, creation date, expiration date and more in Python.

articles/automated-browser-testing-with-edge-and-selenium-python.PNG
Automated Browser Testing with Edge and Selenium in Python

Learn how to perform automated browser testing with Microsoft Edge browser and Selenium library in Python.

articles/make-url-shortener-in-python.PNG
How to Make a URL Shortener in Python

Learn how to use Bitly and Cuttly APIs to shorten long URLs programmatically using requests library in Python.

articles/convert-video-to-audio-with-python.jpg
How to Extract Audio from Video in Python

Learn how to convert video to audio using ffmpeg and subprocess, or using MoviePy library in Python.

articles/ssh-bruteforce.PNG
How to Brute-Force SSH Servers in Python

Writing a Python script to brute-force SSH credentials on a SSH server using paramiko library in Python.

articles/skin-cancer-detection-using-tensorflow2-in-python.jpg
Skin Cancer Detection using TensorFlow in Python

Learn how to use transfer learning to build a model that is able to classify benign and malignant (melanoma) skin diseases in Python using TensorFlow 2.

articles/using-youtube-api-in-python.PNG
How to Extract YouTube Data using YouTube API in Python

Learn how to extract YouTube data including video and channel details, searching by keyword or channel and extracting comments with YouTube API in Python.

articles/extract-network-usage-in-python.jpg
How to Make a Network Usage Monitor in Python

Learn how to combine psutil and Scapy libraries to make a network traffic monitor per network interface and per process in Python

articles/phone-1582893_1920.jpg
How to Create Fake Access Points using Scapy in Python

Creating fake access points and fooling nearby devices by sending valid beacon frames to the air using scapy in python.

articles/chatbot-using-huggingface-transformers.jpg
Conversational AI Chatbot with Transformers in Python

Learn how to use Huggingface transformers library to generate conversational responses with the pretrained DialoGPT model in Python.

articles/convert-python-files-to-executables.png
How to Convert Python Files into Executables

Using PyInstaller package to bundle Python applications and all its dependencies into a single stand-alone executables.

articles/making-http-proxy-with-mitmproxy-and-python.PNG
How to Make an HTTP Proxy in Python

Learn how to use mitmproxy framework to build HTTP proxies using Python