Hi, I am trying to read in a simple config file with lines like:
Key1 = Value1 Key2 = Value2 etc. I can do e.g. conf = open(readlines, "configuration.txt") and then proceed with string manipulation. I wonder what is (or could be) the best practise here perhaps ending up in a Dictionary populated with key/value pairs. Thanks, Jan
