Hello python programmers This blog contains the code for the Vehicle detection project using Open-cv library. Step1: Import the Open-CV libr...
Python programming blog
Friday, May 21, 2021
Tuesday, May 18, 2021
Simple Ball game using Pygame
AKPython
Tuesday, May 18, 2021
Step 1: Library Installation * pip install pygame Step 2 : Mygame(): class Mygame(): def main(self): #inital speed Xspee...
Monday, May 10, 2021
Doge coin price tracker using python
AKPython
Monday, May 10, 2021
Step 1: Library Installations * pip install bs4 * pip install requests Step 2: Importing Libraries import requests from ...
Friday, May 7, 2021
Build a website in 12 lines of Python code (Flask frame work)
AKPython
Friday, May 07, 2021
Step 1:Installing the dependencies * pip install flask * pip install pyshorteners Step2: Importing the libraries from flask import Flask,r...
Sunday, April 25, 2021
Real time Color detection project using python
AKPython
Sunday, April 25, 2021
Step 1: Installing libraries 1.pip install Opencv-Python 2.pip install colorthief Step 2: Importing libraries import cv2 from colorthief i...
Sunday, April 18, 2021
Cricket scores prediction using linear regression
AKPython
Sunday, April 18, 2021
Step1: Importing the Libraries import numpy as np import pandas as pd Numpy is for performing numerical calculations. Pandas is for...
Sunday, April 11, 2021
Voice based sentiment analysis using python
AKPython
Sunday, April 11, 2021
Hello python programmers this is AK, In this blog, I'm going to show how to perform a voice-based sentiment analysis using python. I...