Posts from Python

Get all image links from a web page using Python

By Amandeep Singh

Anytime you visit a website, you could find a variety of stuff, from text to photos, music to videos. Sometimes, all you want to do is read the text and skim the material. In other.... Read More

on_delete purpose on Django models

By Aditi Deo

Models in Django are objects  that have specific attributes and functions. They are used to represent and manage data in the database. Using Django we can easily create, update, o.... Read More

Read meta description and title tag of a web page in Python

By Amandeep Singh

You may learn a lot about a website’s content, the underlying content strategy, or product lines by scraping the titles and meta descriptions from all of its pages. It’.... Read More

Merge two videos using moviepy in Python

By Aakanksha Thakar

In this tutorial, we are going to see how to merge or join two videos using moviepy in Python. moviepy is a Python library used for video editing and processing. It can read and w.... Read More

Compress video using moviepy in Python

By Muskan Bani

In this post, we are going to learn how to compress a video using moviepy in Python. Moviepy is a Python video editing module that allows users to perform basic video editing to a .... Read More

Plotting A 2D Heatmap Using Matplotlib In Python

By Kovid Bhatt

Illustration This tutorial is based on plotting a 2-D heatmap using matplotlib in Python programming. A heatmap can be plotted using various methods, but here in this tutorial, we .... Read More

Generate a Random Boolean Value in Python

By Aditi Deo

In many situations, we need to generate random boolean values in Python. It is similar to flipping a coin to get either heads or tails. We need random values to generate test cases.... Read More

Find the first empty cell from column of an excel file using openpyxl

By Aakanksha Thakar

In this tutorial, we will see how to find the first empty cell in a column of an excel sheet using openpyxl. openpyxl is a Python library used to work on Excel files. First, we mus.... Read More

Related Posts