Flask is a micro-framework in Python for developing web applications. Flask supports jinja2 template engine. We will use Flask framework for developing our mini (sometimes major) IoT based Applications in Raspberry PI. Because of it’s REST like request handling system it become very easy to develop APIs and/or web clients/server like applications. Flask is very […]
Tag: python
If you want to control servo motor with Raspberry Pi, or you wonder how to drive servo motor with raspberry pi? Then this article is for you. In this article we are going to present Raspberry Pi servo motor control python code so that any one who wish to drive servo motor with raspberry pi […]
Speech Recognition is always a difficult and interesting task to do for a lot of beginners. In this post, we are going to describe an easy way to do this tuff task using PocketSphinx. Also, there are more options available in the package other than CMU Sphinx (works offline).
Handling Json Strings in Python
In today’s post, we are going to explain how to handle Jason Strings in Python. There is JSON module in python which is used for JSON string handling. Jason is very common in RESTfull APIs. JSON is the abbreviation of JavaScript Object Notation. Here is Tutorial about Python Dictionaries. We use Dictionary data structure for handling […]