Now, we can run the drone_service.py script, which launches the development server for Tornado 5.1.1 to compose and send HTTP requests to our unsecured and simple web API. Execute the following command:
python drone_service.py
The following lines show the output after we execute the previous command. The Tornado HTTP development server is listening on port 8888:
Listening at port 8888
With the previous command, we will start the Tornado HTTP server and it will listen on every interface on port 8888. Thus, if we want to make HTTP requests to our API from other computers or devices connected to our LAN, we don't need any additional configurations.
If you decide to compose and send HTTP requests from other computers or devices connected to the LAN, remember that you have to use the development computer's assigned IP address...