Posts from Python

Detect image similarity between two images in Python – Machine Learning

By Ashutosh Ranjan

Do you know how Facebook can detect faces in your pictures or Google find similar pictures? Today I am going to show you one powerful method for image compari.... Read More

Detect text on an image in Python

By Ashutosh Ranjan

Ever had a need to copy text from an image and found yourself re-typing it? In this tutorial, I will show you how to extract text from images automatically using Python and Optical.... Read More

Add formula to cell in Excel – Python Pandas

By Ashutosh Ranjan

Are you tired of manually calculating your business numbers at the end of each month? I’ve created a simple tool that does the heavy lifting for you, giving you instant insig.... Read More

Detect text from the screen and click on it in Python programming

By Faruque Ahamed Mollick

In this tutorial, I will show you how to detect text on the screen and then click on it with the help of Python programming. For example, you may want to click on an anchor link on.... Read More

Convert Markdown (.md) to HTML using Python

By Saruque Ahamed Mollick

In this tutorial, I will show you how to convert markdown to HTML using Python with just a few lines of code. The Python package that I am going to use is: markdown. I want to make.... Read More

How to plot Line of Best fit in python

By Sourav Rastogi

First, we will import  libraries import numpy as np import matplotlib.pyplot as plt Then we will create data points #Create data points x = np.array([0, 1, 2, 3, 4, 5]) y = np.arr.... Read More

Company name matching from csv with matching score – Python

By Saruque Ahamed Mollick

Well, finally I have come up with a solution of matching company names using Python. This time, we are going to match company names from two CSV datasets even if the company names .... Read More

Get official URL of any company using Python

By Saruque Ahamed Mollick

In this tutorial, I will show you how to fetch or get the URL of official website of any company using Python. We will use beautifulsoup and requests module to do this. Logic behin.... Read More

Related Posts