Recent posts

Dump and Restore the PostgreSQL Database

1 minute read

We often want to make a copy of the populated database and connect it to our backend project. The cases generally occur when an old team member does not hav...

Extra Actions For Routing

1 minute read

We can use @action decorator to add extra actions which can work for single object or an entire collection. In order to indicate the intend, we need to set ...

Python OOP classmethods and staticmethods

4 minute read

Class methods It is a method bound to class rather than its object and is shared among all objects. It receives class as a implicit first argument and can ...