Designing good Django models – Example

Designing good Django models is very important when it comes to readability and to maintainability. In this post I’ll share some good tips on how to implement some good techniques. Read more

Similar

SQLALchemy vs. Django ORM

If you are working with Django ORM most of the time and then switching to SQLAlchemy - you may face some unexpected behavior. In this post I’ll try to describe the most important differences from my point of view. All examples for SQLAlchemy will be shown... (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 »