Filename Pattern Matching with the Python glob Module

What is the Python glob module? For which type of Python applications can you use it? The Python glob module is used to find pathnames that match a particular pattern. The general term “glob” is used to describe methods for matching specific patterns according to Unix shell rules. With glob, you can also use wildcards … Read more

Python ConfigParser: Configuration Files Made Easy

ConfigParser is a prerequisite if you want to build Python projects that are robust to updates and easy to manage. At the end of this tutorial, you will know how to read and write configuration files for your applications using the configparser module. Let’s learn how to use configparser! What Is the Python ConfigParser Module? … Read more