I have a .properties file which stores some keys and values that I would like to use it from my python file.
My test.properties file is something like that:
attribute1=username
attribute2=address
attribute3=class
I would like to access these attributes from a python file such that when I do something like:
attribute1 = "tom123"
attribute2 = "5 Smith Street"
attribute3 = "402"
But right now I am wondering how to import the config.properties file in python and start using the properties defined. Any help will be appreciated thanks.