Creating a Django model instance in the past

In Django, if you want to save the date an instance was created and/or updated, you can use DateTimeField with the flags auto_now_add or… Read more

Similar

Postgres Full-Text Search with Django

Django has added support for Postgres's built-in full-text searching as of version 1.10. This is a great alternative to a heavier search system such as elasticsearch or SOLR, when we want decent search capabilities without having to setup and maintain ano... (more…)

Read more »

Building a Django driver for Psycopg 3

One of the goals of the Psycopg 3 project is to make easy to port code developed from Psycopg 2. For this reason the creation of a Django backend (the module you specify in the settings as your database ENGINE) was a project with a double goal: (more…)

Read more »