Real Time Smile Detection in Webcam using Python 3

Introduction Real time smile detection in webcam using Python 3 will show you how your working webcam detects your face and smile and draws a rectangle around your smile on your face. In my previous tutorial we have seen Real Time Eye Detection in Webcam using Python 3. The similar tutorial we will use here to detect your face and smile…

Real Time Eye Detection in Webcam using Python 3

Introduction Real time eye detection in webcam using Python 3 will show you how your working webcam detects your face and eyes and draws a rectangle around your each eye. In my previous tutorial we have seen Real Time Face Detection in Webcam using Python 3. The similar tutorial we will use here to detect your face and eyes and draw…

Real Time Face Detection in Webcam using Python 3

Introduction Real time face detection in webcam using Python 3 will show you how your working webcam detects your face and draws a rectangle around your face. In my previous tutorial we have seen how you see yourself in webcam using Python. The similar tutorial we will use here to detect your face and draw a rectangle around it to…

See Yourself in Webcam using Python 3

Introduction The tutorial, see yourself in webcam using Python 3, will show yourself in front of the webcam as a video motion. In this example we will capture the video in front camera in the same way you see yourself in front of the mirror. Make sure you do have the camera installed in your system in order to see…

Call Stored Procedure using Python

Introduction This tutorial will show you how to call stored procedure using Python programming language. Here I will use MySQL database server to store the data for this example. You may also want to read How to call stored procedure using Codeigniter framework. A stored procedure is a set of Structured Query Language (SQL) statements with a given name so…

Python Web Application CRUD Example Using Flask And MySQL

Flask Web Application The tutorial on Python web application CRUD example using Flask and MySQL will show you the basic CRUD operations. CRUD means Create, Read, Update and Delete operations. In the below example I will create new record, read existing records, update the existing record and delete the existing record. I will use MySQL database as a permanent storage…

Modifying XML using Python

Introduction Modifying XML using Python programming language means updating or modifying an existing XML file or XML string using Python. Extensible Markup Language (XML) are the most widely used formats for data, because this format is very well supported by modern applications, and is very well suited for further data manipulation and customization. Therefore it is sometimes required to generate…

Building XML Using Python

XML Building Building XML using Python programming language means creating an XML file or XML string using Python. You might have seen how to parse or read an existing XML file or string using Python in my previous tutorial. Here you will see how to create an XML file or string using Python from scratch. I will not only create…

Parsing XML using Python

XML Parsing Parsing XML using Python is a matter of few lines of code has to be written.  The XML could be in a file or XML could be a string. So basically parsing XML using Python means reading the XML node data and further doing something with those data to use in this application. Extensible Markup Language (XML) are…

A guide to write word file using Python

Introduction This tutorial shows a guide on how to write word file using Python. You know that word is great for documentation. This tutorial also shows how to install docx module when this module is not available in Python on Windows Operating System. This module is required to write word doc or docx file format using Python. In this example,…