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
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
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
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
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
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
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
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