Lists in ConfigParser
Use json
to encode and decode lists for ConfigParser
. Write lists using json.dumps(list)
, and read them back with json.loads(config_value)
.
Example:
Breaking up long lists
If your list could stretch from here to the moon, split it over multiple lines. This keeps your config files readable, even if they're longer than a python (the snake, not the programming language 🐍).
Example:
Universal default values
The [DEFAULT]
section is like a phone a friend lifeline in a game-show! It allows values to be shared across different sections. This works wonders for common list defaults.
Example:
List organization within ConfigParser
For multiple lists, dedicate specific sections for each with unique key-value pairs. Use config.items("section_name")
to retrieve list items effectively.
Example:
Delimited Strings and Lists
Opt for delimiter-separated strings when storing lists. Choose any safe delimiter that isn't present in your list items and split the string to retrieve the original items for the list.
Example:
Advanced Alternatives
YAML: If you crave for simplicity and readability, YAML might just be your favorite dish. It has native support for lists and even complex structures.
Custom parser: When complexity walks in, a custom parser might be your knight in shining armor. It comes handy for handling reserved configuration abilities.
Environment variables: Sometimes, less is more. Using environment variables for the list-like data can make the whole development process a walk in the park.
Was this article helpful?