Actually it is like the PropertyPlaceholderConfigurer in spring which lets you use ${variable-reference} to refer to already defined property ).
pip install property
from properties.p import Property
prop = Property()
# fetch all the evaluated properties in a dictionary
dic_prop = prop.load_property_files('my_file.properties')
print(dic_prop)