-
Book Overview & Buying
-
Table Of Contents
Hands-On Software Engineering with Python - Second Edition
By :
The code for this chapter was written for Python 3.11, and assumes that it is available on the reader’s machine. Download and installation instructions are available online at https://www.python.org/downloads/ for Windows, Linux/Unix, macOS, and other systems. The package requirements for the chapter’s code are captured in the Pipfile or requirements.txt file, and can be installed as described earlier in this book. Running them will also require a complete local development database installation, as discussed in Chapter 13.
This chapter focuses heavily on being able to make and view the results of requests to a local API instance, initially without any concerns for a front-end UI. To that end, there are several tools available, including Bruno (https://www.usebruno.com/) and Postman (https://www.postman.com/), both of which provide a developer-friendly UI for making HTTP requests and seeing the responses to those requests.
Code for this...