Example of configuration file parsing in Python: With the configuration file configtest.cfg: Example output: More information: https://docs.python.org/3/library/configparser.html Also available in GitHub: https://github.com/markkuleinio/python-config-parsing
Tag: python
Logging in Python
Example of configuring logging in Python: Output: More information: https://docs.python.org/3/library/logging.html
Argument Parsing in Python
Example of command line argument parsing in Python: Output: More information: https://docs.python.org/3/library/argparse.html Also available in GitHub: https://github.com/markkuleinio/python-argument-parsing
Enabling Python Syntax Coloring and Indenting in Vim
Put these in your .vimrc to enable for example Python syntax coloring and indenting in Vim: syntax on filetype indent plugin on