Building a convention for configuration saver and reader module in Python

from blog Prahlad Yeri, | ↗ original
I maintain several python projects on github and some of them like VTScan has a need for user configuration. Now python has a plethora of ways and standards for parsing of configuration files like json, *.ini files, etc., but there is no standard about where to save them on the user’s machine post installation. One method used by many coders is...