Skip to content

Python

Easy way to detect isolated and overlapping geo polygons in Python

Easy way to detect isolated and overlapping geo polygons in Python

There are many scenarios in which you have to detect any type of isolated polygons and overlapping polygons. But you also need to make it faster and 100 percent accurate when you pass the large numbers of polygons for processing. In this article, you’ll see exactly how to detect isolated and overlapping geo polygons in Python. Why do you need… Continue readingEasy way to detect isolated and overlapping geo polygons in Python

How to make circles in python using Shapely library

How to Make a Circle Using the Shapely Library in Python

When working with geospatial data in Python, you might find yourself needing to create a perfectly round circle. The Shapely library is a popular tool for this task, but it’s not always as straightforward as it seems. Here is given code to create circle using Shapely library in python. The Shapely’s Buffer Function Dilemma You might think that Shapely’s buffer… Continue readingHow to Make a Circle Using the Shapely Library in Python

Chat GPT-3 web app with streamlit

How to Create A Chat GPT-3 Web app with Streamlit in Python

OpenAI’s ChatGPT-3(Generative Pre-trained Transformer) is one of the most powerful AI chatbots right now. You can ask anything and it gives the precise answers of it. OpenAI also provides API to implement it in the programming. In this article, we will see how to create a Chat GPT-3 web app with Streamlit in python using API. After creating this, your… Continue readingHow to Create A Chat GPT-3 Web app with Streamlit in Python

logging in python

What is logging and How to make it from scratch in python

With the help of python, we can build many projects of web scraping, data science, and more. When you are building a project, logging is also an essential part of that. There are many benefits of logging into the program. Here we will talk about what is logging in python and how to do it by the in-built library as well as by building it from scratch.

images to WebP converter

Flask app to convert images to WebP in python

Recently I have been searching to convert my images to Webp. But I found that the most popular WebP converter websites were not fully free versions. They are giving let’s say 5 or 10 images to convert to WebP for free and then they will ask to buy their paid version to convert unlimited images. Therefore after some research, I built the flask app to convert my PNG or any other format images into WebP format. So here I provided that app here.