How to parse JSON received by a Flask application.
ESP8266: HTTP GET Requests to Flask server
The objective of this post is to explain how to connect the ESP8266 to a Flask Webserver and send a HTTP GET Request. The Python code For this example, we will use Flask to deploy a simple webserver that will listen to HTTP GET requests on a certain URL and output a simple text message …
Continue reading "ESP8266: HTTP GET Requests to Flask server"
Flask: Hello World
The objective of this post is to explain how to create a simple "Hello world" application with Python and Flask. Introduction Flask is a web micro framework for Python [1] which allows us to create and deploy simple web applications very easily. The installation of Flask is very simple if we use pip. We just …