Skip to main content

What are Decorators in Python

In our previous Python tutorial, we have explained how to Automate Everything with Python. In this tutorial, you will learn about Decorators in Python.

In python, Decorators is a design pattern that allows to modify the functionality of a function by wrapping it in another function. It takes the original function as an argument and returns as extended version of it, means without permanently modifying it.

In Python, functions are treated as objects which means that functions can be used or passed as arguments. (more…)

Automate Everything with Python

In our previous Python tutorial, we have explained how to make ChatBot Project with Python and Flask. In this tutorial, we will explain how to Automate Everything with Python.

Automation is the key of efficiency and productivity After a decade of experiance. It lets us to automate important and repeated tasks to complete quickly.

Python is an incredibly powerful and flexible language. It can be used to automate things by building utilities of useful scripts to make life easier as a software developer. (more…)

ChatBot Project with Python and Flask

In our previous Python project tutorial, we have explained How to Make a ChatBot using Python. In this tutorial, we will explain how to make ChatBot Project with Python and Flask.

A ChatBot is an AI based automated system that design to work without human assistance. It enables the communication between a human and a machine in both the messages and voice command.

The ChatBots are very popular and widly used for customer support, generating information, etc. The companies are using ChatBots to work as knowledge base, delivering personalized responses, and help customers complete their tasks.

(more…)

Real-time Face Recognition Project with Python & OpenCV

In our previous Python project tutorial, we have explained Face Recognition Based Attendance System with Python. In this tutorial, we will explain how to implement Real-time Face Recognition Project with Python and OpenCV.

Face recognition is an artificial intelligence (AI)-based computer technology used to find and identify human faces in digital images and video. It can be used in web application for many reasons such as surveillance and tracking of people in real time.

(more…)

Face Recognition Based Attendance System with Python

In our previous Python project tutorial, we have explained How To Use Pandas Library in Python. In this tutorial, we will explain how to develop a Face Recognition Based Attendance System using Python, Flask and MySQL.

The face recognition attendance management system provide a quick way to take attendance of students, teachers, employees etc. The system recog the faces and mark attendance of the recognized faces into an excel sheet.

We will develop the system using face_recognition package from Python. During user register process, we will store the user image in database and upload image to a directory. Then we will capture image through webcam and recognize to complete attendance.

(more…)