October 2016
Intermediate to advanced
418 pages
9h 52m
English
Now, we can run the api.py script that launches Tornados's development server to compose and send HTTP requests to our unsecure and simple Web API. Execute the following command:
python api.py
The following lines show the output after we execute the previous command. The Tornado HTTP development server is listening at 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 ...