In this video, we adapt a clumsy, non-Pythonic API into an easy to use, easy to understand Pythonic one. We use magic methods such as getitem_, len, enter, and _exit to make our objects a context manager and support the len() function and square bracket indexing. And in the end, we turn what once was ugly, difficult to maintain code into something that other developers would actually want to use.
From 'Barely Works' to Pythonic Code in 5 steps
https://www.youtube.com/watch?v=spi0N_PNznE
1 Comments
lascapi@jlai.lu · 3 pts · 3y
Nice to see how to improve python code like that! I love that the
__getitem__and__len__made the object iterable ! 🤩