Python Code Tutorials


articles/handling-files-in-python-using-os-module.jpg
Why use Python for Data Analysis

Learn what a Data Analyst is and what you should know when using Python programming language for data analysis.

articles/satellite-image-classification-using-tensorflow-in-python.jpg
Satellite Image Classification using TensorFlow in Python

Learn how to fine-tune the current state-of-the-art EffecientNet V2 model to perform image classification on satellite data (EuroSAT) using TensorFlow in Python.

articles/extract-text-from-pdf-in-python.jpg
How to Extract Text from PDF in Python

Learn how to extract text as paragraphs line by line from PDF documents with the help of PyMuPDF library in Python.

articles/add-audio-to-video-in-python.jpg
How to Add Audio to Video in Python

Learn how you can add audio clip to a video clip with more flexibility using the MoviePy library in Python.

articles/record-window-in-python.jpg
How to Record a Specific Window in Python

Learn how to record a specific opened window in your Windows machine using pyautogui and pygetwindow libraries in Python.

articles/make-a-pdf-splitter-in-python.jpg
How to Split PDF Files in Python

Learn how you can make a PDF splitter script with the help of pikepdf library in Python.

articles/text-generation-using-transformers-in-python.jpg
Text Generation with Transformers in Python

Learn how you can generate any type of text with GPT-2 and GPT-J transformer models with the help of Huggingface transformers 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/extract-wifi-saved-passwords-in-python.jpg
How to Extract Saved WiFi Passwords in Python

Learn how you can extract Wi-Fi passwords that are saved in your machine (either Windows or Linux) using Python without installing any third-party library.

articles/organize-files-by-extension-in-python.jpg
How to Organize Files by Extension in Python

Learn how to separate your files by extension in your target folder using Python's built-in libraries.

articles/machine-translation-using-huggingface-transformers-in-python.jpg
Machine Translation using Transformers in Python

Learn how to use Huggingface transformer models to perform machine translation on various languages using transformers and PyTorch libraries in Python.

articles/extract-media-metadata-in-python.jpg
How to Extract Video Metadata in Python

Learn how to extract video or audio file metadata in Python with the help of ffmpeg framework and its ffmpeg-python wrapper.

articles/reversing-videos-in-python.jpg
How to Reverse Videos in Python

Learn how to reverse videos by extracting frames and loading them in the inverted order using MoviePy library in Python.

articles/pretraining-bert-using-huggingface-transformers-in-python.jpg
How to Train BERT from Scratch using Transformers in Python

Learn how you can pretrain BERT and other transformers on the Masked Language Modeling (MLM) task on your custom dataset using Huggingface Transformers library in Python

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/extract-frames-from-video-in-python.jpg
How to Extract Frames from Video in Python

Making two different methods to extract frames from videos with the timestamp with OpenCV or MoviePy libraries in Python.