December 2018
Intermediate to advanced
500 pages
12h 33m
English
The main building blocks for a RESTful API in Tornado are subclasses of the tornado.web.RequestHandler class, that is, the base class for HTTP request handlers in Tornado. We just need to perform the following tasks to build our RESTful API that interacts with a drone:
We will create the following subclasses of the RequestHandler class:
|
Class name |
Description |
|
HexacopterHandler |
This class processes the HTTP ... |