July 2020
Beginner to intermediate
822 pages
20h 28m
English
Python's concept of an extensible library gives us rich access to numerous computing resources. The language provides avenues to make even more resources available. This makes Python programs particularly strong at integrating components to create sophisticated composite processing. In this chapter, we'll address the fundamentals of creating complex applications: managing configuration files, logging, and a design pattern for scripts that permits automated testing.
These new recipes are based on recipes shown earlier. Specifically, in the Using argparse to get command-line input, Using cmd for creating command-line applications, and Using the OS environment settings recipes in Chapter 6, User Inputs ...