Looking for an object initializer pattern in Python like C# that doesn't permit positional args. eg instead of C(True,False), I want C(P(unzip=True,keep_zip=False))
But namedtuples let you do C(P(True,False)) which is no better than C(True,False)
https://stackoverflow.com/questions/17283957/object-initializer-syntax-c-in-python
Post
January 31, 2019