Skip to main content

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

How To Use Pandas Library in Python

In our previous Python tutorial, we have explained How To Use Lambda Function in Python. In this tutorial, we will explain How To Use Pandas library in Python.

Pandas and python makes data science and analytics extremely easy and effective. Pandas is an open source Python library that allows the handling of tabular data.

We will cover following in this tutorial:

  • What is pandas?
  • What is data science or data analytics?
  • What Can Pandas Do?
  • Pandas installation
  • Pandas Series
  • Pandas DataFrames

(more…)

How To Use Lambda Function in Python

In our previous Python tutorial, we have explained about file hadling in python. In this tutorial, we will explain about Lambda Function in Python.

Lambda functions are similar to user defined function but without name. Due to this, these functions are called anonymous functions. The lambda keyword is used to define an anonymous function in Python.

The Lambda functions are useful we want to use the function once or want to create a function that only contain simple expression or single line of statement.

(more…)

Make YouTube Video Downloader with Python & Flask

In our previous Python Porject tutorial, we have explained how to make ChatBot in Python. In this tutorial, we will explain how to make YouTube video downloader in Python.

YouTube is the most popular video sharing and social media platform. The people are always willing to download the favorite videos. But it’s not always easy to download videos as it needs third party tools or website to download. So keeping this in mind, we are have tutorial for you to develop YouTube Video Downloader.

In this tutorial, we will explain how to make your own YouTube Video Downloader using Python. We will use Python library pytube to implement video download functionality. We will use Flask, micro web framework and Bootstrap 5 to create our YouTube Video Downloader.

(more…)

Online Library Management System with Python, Flask & MySQL

In our previous Python tutorial, we have explained how to develop User Management System with Python, Flask and MySQL. In this tutorial, we will explain how to develop Online Library Management System with Python, Flask and MySQL.

Online Library Management System is an automated system that handles the various functions of the library such as manage books, issue books, manage users to access system etc.

So let’s proceed to develop Online Library Management System with Python, Flask and MySQL.

(more…)