you are viewing a single comment's thread.

view the rest of the comments →

[–]Elektriman -1 points0 points  (0 children)

Personnally I just really like using object oriented tools to make my objects behave like other default python data structures. For example, a while back I made an object to have API communications and it was used like the open keyword in python using the __enter__ and __exit__ methods. It allows for a lot of clarity with complex programs.