How to advertise a network service available on the ESP32 using mDNS, and get information about that service on a Python program.
Python Requests: Disable SSL validation
How to disable SSL validation using Python Requests library.
LinkIt Smart Duo: Sending HTTPS requests
The objective of this post is to test some HTTPS requests using the Requests library on the LinkIt Smart Duo. Introduction The objective of this post is to test some HTTPS requests using the Requests library on the LinkIt Smart Duo. We will use this website for testing the behavior of the library with invalid HTTPS …
LinkIt Smart Duo: Installing and testing the Requests library for Python
The objective of this post is to explain how to install the Python Requests library on the LinkIt Smart 7688 Duo and perform a simple test. Introduction The objective of this post is to explain how to install the Python Requests library on the LinkIt Smart 7688 Duo and perform a simple test. The Requests …
Continue reading "LinkIt Smart Duo: Installing and testing the Requests library for Python"
Python: HTTP POST Requests
The objective of this post is to explain how to do HTTP POST requests using Python and the Requests library. Introduction The objective of this post is to explain how to do HTTP POST requests using Python and the Requests library. The simplest way to install this library is by using pip, as can be seen in …
ESP8266 Webserver: Receiving GET requests from Python
The objective of this post is to explain how to make a Python application talk with a ESP8266 by sending HTTP GET Requests to a HTTP web server running on the microcontroller. Introduction The objective of this post is to explain how to make a Python application talk with a ESP8266 by sending HTTP GET Requests …
Continue reading "ESP8266 Webserver: Receiving GET requests from Python"
Python: HTTP GET requests
The objective of this post is to explain how to do HTTP GET requests using Python and the Requests library. Introduction The objective of this post is to explain how to do HTTP GET requests using Python and the Requests library. The simplest way to install this library is by using pip, as can be …