43 followers
Lead Developer at Wundermart.I love diving into the core of my favorite framework - Django - discovering and writing about new tech stuff.
Image (Daniel Bonilla): Casa Batlló by Gaudí in Barcelona, one of my favorite masterpieces in architecture. · A lot has already been written about...
Expiring a superuser in Django after a due date · Out-of-the-box Django comes with a superuser checkbox that can be set on each user in the admin....
At Wundermart we started saving monetary amounts in Django, we naively started with DecimalField(decimal_places=2) for our financial data. After some...
Suppose you change your Django model instance, how do you know if the data actually changed? There are a few ways to achieve this, for example using...
The django-simple-history package is awesome as it shows you all the activity on a certain Django model object. It allows seeing how it was mutated...
When using the requests library in Python you can use some built-in auth mechanisms like HTTPBasicAuth and HTTPDigestAuth. However, I could not find...