In an earlier article [/levenshtein-distance-and-text-similarity-in-python/] I... (more…)
Read more »
argsv is a library for validating arguments passed to callables. With this library, you can validate arguments sent to callables in a simpler, more readable, and well-defined context. - mimseyedi/a... (more…)
Read more »
I’ve been itching to write this article since I authored Python vs Copy on Write last year. To recap, I found myself awake at 4 AM trying to performance tune the cache on a long running ETL w…...
Read more »
I have been using Python extensively for the last 7 years but using pip and requirements.txt file for managing dependencies never clicked with me. Maybe it was because during those 7 years, my work required me to use Spring Boot for a few months and that ... (more…)
Read more »
Every time you create an instance of a class in Python, you are using up some memory–including overhead that might actually be larger than the data you care about. Create a million objects, and you have a million times the overhead. And that overhead can ... (more…)
Read more »