There's not really much to this:
import RLPy
holder = ""
prop_list = RLPy.RScene.GetProps()
for prop in prop_list:
prop_name = prop.GetName()
holder = holder + ", " + prop_name
with open("D:\\iCloneProps.txt", 'w') as propfile:
propfile.write(holder)
print(holder)