Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
About Finite-State Machines in Django
Finite-state machines (FSMs) are awesome. I was first introduced to the concept through the XState JS package. This package is, obviously, geared towards front end work, but the concepts are the same. Now, I'm no expert in the theory behind FSMs, so ... -
Django News - Annual Django Survey and Django 3.2.6 Bugfix Release - Aug 6th 2021
News Django Developers Survey 2021 by JetBrains and the DSF Please take a moment to fill out the official Django Developers Survey. It helps the community know how Django and related tools/technologies are being used and guide the future development of the framework. jetbrains.com Django bugfix release: 3.2.6 New Django bugfix available. As always, the best security is to be up-to-date with the latest version of Django. Here are the official docs on how to upgrade properly. djangoproject.com Events Call for Proposals | Django Day Copenhagen 2020 The third Django Day will take place on September 24th, 2021. Deadline for submissions is August 15th. djangoday.dk Sponsored Link REVSYS We’re senior Django developers, ops people, and consultants who have a deep and wide experience to pull from. We know what works and what doesn’t. We have been where you are before (probably many times). Let us guide you onto a better path. revsys.com Articles Get yourself a better Django proxy experience by Niccolò Mineo A couple of tips when working with Django proxies that will make end-users grateful and developers sigh in relief. medium.com Django Todo App with AJAX and jQuery Detailed look at an async Django todo app powered by … -
About Postponed Evaluation of Annotations
Let's say you're working on a Django project, and you have a model with a custom create method on the manager: # managers.py class MyManager: def create(self): # your custom logic here return super().create() # models.py from .ma... -
Contributing to Django - David Smith
David Smith on Twitterdjango-crispy-formsdjangobenchDiátaxis FrameworkAirspeed Velocity (ASV)DSF Triage & Review TeamVictor Stinner’s Notes on Benchmarking PythonSupport the ShowThis podcast does not have any ads or sponsors. To support the show, please consider visiting LearnDjango.com, Button, or Django News. -
About self.subTest
self.subTest is a part of Django's TestCase class and is used as follows: def test_a_view(self): response = self.client.get(url) with self.subTest("Response status code"): self.assertEqual(response.status_code, 200) with self.su... -
Django Login and Logout Users
Hello and welcome to the second part of this series, I hope you have implemented the user's registration with email confirmation discussed in part one, today we will implement the following Authentication Vs Authorization User Login and Logout P... -
Deploying Flask App - With Heroku
Heroku is the simple and easiest way to deploy your backend APIs. The blog consists of step-by-step instructions to deploy your application along with a project template that makes it easy for you to organize your applications. Note:: The followin... -
Django soft delete options
In this post, I try and explore different ways of doing soft delete's in Django, either using a library or from the models directly. The reason I am trying out all these options, is to make sure that the consequences of any framework or approach, are... -
Supporting Multiple Languages in Django
This tutorial looks at how to add multiple language support to your Django project. -
Django User Registration
Hello and welcome, So you have known the Django basics and it's time to do some real stuff right? Ok cool, Let's start with creating an app that gets users' information and stores them in the database.In this article, we will cover the following R... -
Deploy Django Application to Heroku
Hello, We have successfully completed our CRUD Django website which we have pushed to the GitHub repository but it can only be used locally on our system and it's time for us to show the world what we have created by hosting our website on Heroku. ... -
Django News - All about Django search and PostgreSQL - Jul 30th 2021
Articles Postgres Full-Text Search: A Search Engine in a Database With Postgres, you don't need to immediately look farther than your own database management system for a full-text search solution. If you haven't yet given Postgres' built-in full-text search a try, read on for a simple intro. crunchydata.com Enhancing the Django “redirects” app by Niccolò Mineo Take Django's redirects app for a spin and find out how to extend it even further to accommodate features content managers and marketers use and love. medium.com How to Dockerize Django in 5 minutes A quick summary of Docker and why you should consider using it in your Django projects. justdjango.com Django REST Framework Serializer Geoffrey Israel Chinedu covers a little bit of everything with Django REST Framework Serializers. hashnode.dev Best PostgreSQL GUIs in 2020 An overview of PostgreSQL GUI tools available for querying, visualizing, and analyzing your Postgres data, as well as remotely accessing and navigating database servers. retool.com Videos Microsoft: Django Beginner's Series This is one of a twenty-four part video series on learning Django from Microsoft. youtube.com Projects etianen/django-watson Full-text multi-table search application for Django. Easy to install and use, with good performance. github.com vintasoftware/django-pg-tenants Tenant support for Django using PostgreSQL … -
Clean Code in Python
This article looks at how to write clean code in Python. -
Automate terminal commands and launch Chrome while opening VS Code automatically
Lets create a basic django application in your terminal django-admin startproject automate . Project Directory The project is coded using a simple and intuitive structure presented bellow: < PROJECT ROOT > | |-- automate/ | |-- ... -
Python Django Framework Tutorial for Beginners – A Beginner’s Guide to start with Django
Django is a python web framework that is used to build web applications. This is a simple yet popular web framework for beginners. A web framework is a server-side application framework which supports the development of dynamic websites as per user r... -
Start With This If You are a Python Beginner
Python is no doubt an amazing language. It was created by Guido Van Rossum in 1991. Python often refers to as a High-Level Programming Language, which leads us to our first question. What is a high-level programming language? To understand it we need... -
Django Tip | How To Make Default Admin Panel Suitable For Users?
Assumption: Basic knowledge of Django Have worked with the admin panel for CRUD before. Let's assume you have a blog site and you are using default admin for CRUD. Now, you have asked some of your friends to write blogs in your app and they agreed.... -
Django Tip | How To Make Default Admin Panel Suitable For Users?
Assumption: Basic knowledge of Django Have worked with the admin panel for CRUD before. Let's assume you have a blog site and you are using default admin for CRUD. Now, you have asked some of your friends to write blogs in your app and they agreed.... -
How To Use Django REST Framework Serializer.
What's Covered? In this article I covered: Validating data at the field or object level Customizing the serialization and deserialization output Passing additional data at save Passing context to serializers Renaming serializer output fields Att... -
Django REST Framework Serializer.
Content In this article I covered: Validating data at the field or object level Customizing the serialization and deserialization output Passing additional data at save Passing context to serializers Renaming serializer output fields Attaching s... -
Using Django DateField with Apollo GraphQl in Android
Hello, If you use Qraphql with Django (Graphene) and you have a model that contains DateField then when you have an android client that use Apollo to parse the graphql you will have a parse error with date field and you will not get the data that you... -
Using Django DateField with Apollo GraphQl in Android
Hello, If you use Qraphql with Django (Graphene) and you have a model that contains DateField then when you have an android client that use Apollo to parse the graphql you will have a parse error with date field and you will not get the data that you... -
Django Models Part I
When creating a web application you will come up with a need to have some sort of mechanism to store your data permanently either on a filesystem or a Database. For this article/tutorial we will have a look inside storing your data on a Database. Da... -
Auto complete foreignKey in Django
Hello, If you want to add autocomplete field or autocomplete search field in Django forms its pretty easy, there are a lot of existing packages that can help you with that, the one that we gonna use is: django-ajax-selects. Installation Activate your... -
Auto complete foreignKey in Django
Hello, If you want to add autocomplete field or autocomplete search field in Django forms its pretty easy, there are a lot of existing packages that can help you with that, the one that we gonna use is: django-ajax-selects. Installation Activate your...