Author name: saivenkataramireddy Kesari

How to Perform HTTP Requests in Python Using the requests Linbary

How to Perform HTTP Requests in Python Using the Requests Library. Python Requests provide inbuilt functionalities for managing both URLs. Python requests offer inbuilt functionalities to manage both the request and response. The requests module has several built-in methods for making HTTP requests to specified URLs using GET, POST, PUT, PATCH, or HEAD requests. An …

How to Perform HTTP Requests in Python Using the requests Linbary Read More »

Image processing in python using the pillow (PIL) library

Image processing in Python using the pillow (PIL) library This article will show how to work with images using Pillow in Python. We will discuss basic operations like creating, saving, and rotating images. So let’s start discussing in detail but first, let’s see how to install a pillow. Installation To install this package type the …

Image processing in python using the pillow (PIL) library Read More »

How to Use Regular Expressions in python with the re Module

Using Regular Expressions in Python with (re) Module The built-in re-module makes regular expressions (regex) in Python easy. Regular expressions are powerful tools for matching, searching, and manipulating text. Here’s a guide on how to use the re-module in Python. Importing the re-module    import re   Here  are commonly used methods in the re-module re.match() The re.match() …

How to Use Regular Expressions in python with the re Module Read More »

Scroll to Top