Python Dependency Management

Dependency management in any language is hard, best way to avoid a dependency
hell is to avoid any dependencies. 🙂 But that’s never practical. Read more

Similar

How to Write a Custom Comparator in Python

Generally, you want to use the built-in sorted() function which takes a custom comparator as its parameter. We need to pay attention to the fact that in Python 3 the parameter name and semantics have changed. How the custom comparator works When providing... (more…)

Read more »