-
Book Overview & Buying
-
Table Of Contents
Hands-On Software Engineering with Python - Second Edition
By :
At this point, there is at least the start of a complete CRUD operation set for the API, though there are some implementation details that still need to be worked out. The most significant of those is the Authentication and Authorization (AuthN/Z) process, but even that has at least been started, by creating and integrating placeholder functions in the endpoints whose access is expected to be restricted. As the details of how AuthN/Z is expected to work start solidifying, those functions’ implementations can be started and refined until they are complete. In much the same way, pending a decision about how to handle the expected virus-scanning of uploaded product image files, a placeholder for that functionality has been integrated that can also be fleshed out.
The next major step, and the topic for the next chapter, is how to build processes that actually deploy the code and database changes to a cloud environment, accounting for some of the breaking changes that...