Tarun Singh has Published 104 Articles

How to open an image from the URL in PIL?

Tarun Singh

Tarun Singh

Updated on 31-Jul-2023 10:33:37

5K+ Views

PIL (Python Imaging Library) is a widely used Python library that enables developers to work with image files. It offers a broad range of functionalities for manipulating and handling image files, such as opening and resizing them, converting between different formats, and more. One frequently encountered task when working with ... Read More

How to not get caught while web scraping?

Tarun Singh

Tarun Singh

Updated on 31-Jul-2023 10:31:01

299 Views

Market research, price monitoring, and content aggregation are just a few examples of the myriad of purposes for which web scraping is utilized and has gained widespread popularity. Although web scraping entails extracting data from websites, there are quite a few legal and ethical concerns surrounding this controversial practice, particularly ... Read More

How to modify existing figure instance in Matplotlib?

Tarun Singh

Tarun Singh

Updated on 31-Jul-2023 10:27:10

856 Views

In this article, we will learn how to modify an existing figure instance in Matplotlib. We will see the complete step-wise process to modify the existing figure in matplotlib along with their complete examples in Python. Matplotlib is a popular Python library used for creating various types of plots and ... Read More

How to Merge Two Pandas DataFrames on Index?

Tarun Singh

Tarun Singh

Updated on 31-Jul-2023 10:23:16

3K+ Views

Merging two Pandas DataFrames on index can be useful in many data analysis scenarios. For instance, you might have two datasets with different features or data points, but both share a common index. In this case, merging the two DataFrames can help you combine the data in a meaningful way. ... Read More

How to modify HTML using BeautifulSoup?

Tarun Singh

Tarun Singh

Updated on 31-Jul-2023 10:15:04

2K+ Views

HTML (Hypertext Markup Language) is the foundation of the internet. Websites use HTML to create and display content in a structured manner. In many cases, it's necessary to modify HTML code to add new elements, remove unwanted elements, or make other changes. This is where BeautifulSoup comes in. BeautifulSoup is ... Read More

How to merge two csv files by specific column using Pandas in Python?

Tarun Singh

Tarun Singh

Updated on 31-Jul-2023 10:04:23

5K+ Views

CSV (Comma Separated Values) files are widely used for storing and exchanging data in a simple format. In many data processing tasks, it is necessary to merge two or more CSV files based on a specific column. Fortunately, this can be easily achieved using the Pandas library in Python. In ... Read More

How to Merge “Not Matching” Time Series with Pandas?

Tarun Singh

Tarun Singh

Updated on 31-Jul-2023 10:02:40

2K+ Views

Time series data is a crucial part of many business operations, especially those in the finance and manufacturing industries. These datasets often come in multiple tables or files, with each table containing a specific subset of the data. Merging these tables can be a challenging task, mainly when the tables ... Read More

How to merge images with same size using the Python 3 module pillow?

Tarun Singh

Tarun Singh

Updated on 31-Jul-2023 09:59:26

548 Views

The pillow or PIL is a powerful Python library for handling and manipulating images. One of the most common tasks in image processing is merging multiple images into a single image. It provides a range of functions for loading, manipulating, and saving images in various formats. One of the main ... Read More

How are the JavaScript window and JavaScript document different from one another?

Tarun Singh

Tarun Singh

Updated on 24-Jul-2023 10:17:41

419 Views

In JavaScript, the window object represents the current web browser window, while the document object represents the web page that is currently loaded in the window. The window object in JavaScript provides access to the browser's history, location, and other properties and methods that allow us to interact with the ... Read More

How to Upload Image into Database and Display it using PHP

Tarun Singh

Tarun Singh

Updated on 14-Jul-2023 15:57:52

16K+ Views

In modern web applications, it is common to store images in databases for various reasons, such as security, easy management, and scalability. PHP, being a popular server-side scripting language, provides an easy way to upload images to databases and display them on the web pages. In this article, we will ... Read More

Previous 1 ... 5 6 7 8 9 ... 11 Next
Advertisements