Let's see whether you can answer the following questions correctly:
- HTTPie is a:
- Command-line HTTP server written in Python that makes it easy to create a RESTful Web Server
- Command-line utility that allows us to run queries against a SQLite database
- Command-line HTTP client written in Python that makes it easy to compose and send HTTP requests
- Flask-RESTful uses which of the following as the main building block for a RESTful API:
- Resources built on top of Flask pluggable views
- Statuses built on top of Flask resource views
- Resources built on top of Flask pluggable controllers
- To process an HTTP PATCH request on a resource, which method should we declare in a subclass of flask_restful.Resource?
- patch_restful ...