Learn programming with our articles
Practical tutorials, in-depth technology reviews and current trends in the development world from industry experts.
Choose a direction
Each category contains carefully selected materials from experts
Fresh content
The most relevant materials from our experts
settings.py: Django Configuration
settings.py is the central configuration file for a Django project.
DRF Serializers
A serializer converts model objects to and from a Python dict and JSON.
Django Project Structure
After running django-admin startproject mysite, the following standard structure is created:
CSRF Protection in Django
CSRF (Cross-Site Request Forgery) is an attack in which an adversary tricks the user's browser...
Django Model Fields
A model is a Python class that describes a database table. Each field represents a...
Authentication in DRF
Works like standard Django — via a session cookie. Suitable for browser-based clients.
DRF ViewSets and Routers
ViewSet is a class that combines several related views into one. Router automatically generates URLs.
Django Migrations
A migration is a file describing changes to the database schema. Django tracks the state...
Inline Editing in Django Admin
Inline allows you to edit related objects directly on the parent object's page.
Configuring Django REST Framework
Охватываемые темы: Installation, Core RESTFRAMEWORK Settings, Custom Pagination, Error Response Format.
Bulk Operations in Django ORM
Охватываемые темы: bulkcreate — Mass Creation, bulkupdate — Mass Update, update() — Queryset-Level Update, delete()...
Mixins in Django CBV
Mixins are small classes that add a single behavior to CBVs through multiple inheritance.
Want to share your knowledge?
Become an author on our blog and help other developers learn new technologies