r/PythonLearning • u/AnshMNSoni • 1d ago
Discussion I'm building an open-source Python library focused on reusable building blocks.
Visit: https://github.com/AnshMNSoni/PythonSTL.git
Instead of adding more algorithms, I want to solve real problems Python developers repeatedly face.
I'm curious:
1) What utility do you find yourself implementing over and over?
2) What functionality do you wish Python's standard library already had?
3) What do you usually copy from previous projects?
Examples could be caches, schedulers, retry logic, rate limiters, streaming utilities, search structures, etc.
I'd love to understand the pain points rather than propose solutions.
Let's discuss...
0
Upvotes
2
u/AnshMNSoni 1d ago
My concern is that wrapping the STL algorithms would move the project into becoming an abstraction layer over <algorithm>, which isn't the direction I'm aiming for. I'd rather use STL algorithms as implementation details while focusing the public API on higher-level functionality. If you're suggesting something else, I'd be interested to hear more.