A quick guide on how to package your Python/pip project into an apt-installable Debian package using stdeb. (more…)
Read more »
Contribute to pipfile development by creating an account on GitHub.
Read more »
We use Sentry to track runtime errors and I noticed that over time we started getting more type related errors in our Python 2 codebase than before. I believe as the amount of code grows it becomes…
Read more »
If you're not careful, your Python environment can quickly become a disaster. We'll walk through the available tools to be more (code) environmentally friendly and establish some (highly opinionated) preferences for setting up Python. (more…)
Read more »
I wanted to share what I think is a neat implementation of currying in Python. Getting the arity of a function First we need to be able to get the arity of a function. This is how we do it: … (more…)
Read more »