Learning how to build a Python script to scan for subdomains of a given domain using requests library.
Building and training a model that classifies CIFAR-10 dataset images that were loaded using Tensorflow Datasets which consists of airplanes, dogs, cats and other 7 objects using Tensorflow 2 and Keras libraries in Python.
Extracting HTML tables using requests and beautiful soup and then saving it as CSV file or any other format in Python.
Learn how to build a model that is able to detect fraudulent credit card transactions with high accuracy, recall and F1 score using Scikit-learn in Python.
Learn how to compress and decompress files, folders and symbolic links in Python using gzip compression in tarfile built-in module.
Learn how to make a simple drawing tool with brush color and size changing feature using PyGame library in Python.
Learn how you to make a MAC address changer in Windows and Linux using the subprocess module in Python.
Learn how to build a deep learning model that is able to detect and recognize your gender just by your voice tone using Tensorflow framework in Python.
Scapy is a powerful Python-based interactive packet manipulation program and library.
Learn how you can build a PDF viewer GUI from scratch using Tkinter and PyMuPDF libraries in Python.
Learn how to perform age and gender detection using OpenCV library in Python with camera or image input.
Explore different methods to join two or more audio files using either MoviePy, wave and PyDub libraries in Python.
Learn how to join two or more video files using MoviePy library in Python
Exploring the fake news dataset, performing data analysis such as word clouds and ngrams, and fine-tuning BERT transformer to build a fake news detector in Python using transformers library.
Learn how to build a classic snake game using Pygame in Python. This detailed step-by-step tutorial explains how to initialize Pygame, generate food for the snake, draw game objects, update the snake's position, handle user input, and manage the game loop. Suitable for beginner to intermediate Python programmers intere
Using different methods such as thread pool executor or threading module to create and handle threads for speeding up I/O bound tasks in Python.