Django 3 Adds Support For ASGI
Written by Kay Ewbank   
Friday, 13 December 2019

There's a new version of Django, the high-level Python Web framework that lets you create dynamic websites. Django takes care of user authentication, content administration, site maps and RSS feeds to make website development easier.

The main change to Django is support for running as an ASGI application. This is the first step to Django fully async-capable. ASGI (Asynchronous Server Gateway Interface) is intended to provide a standard interface between async-capable Python web servers, frameworks, and applications. Where WSGI provided a standard for synchronous Python apps, ASGI provides one for both asynchronous and synchronous apps.

django

The new support for ASGI in Django is in addition to the existing WSGI support, and the developers plan to support both for the foreseeable future, though async features will only be available to applications that run under ASGI. The developers point out that as a side-effect of this change, Django is now aware of asynchronous event loops and will block you calling code marked as “async unsafe” - such as ORM operations - from an asynchronous context.

On the database side, Django now supports MariaDB 10.1 and higher. However, to use MariaDB you do need to use the MySQL backend, which is shared between the two.

Custom enumeration types have been added as a way to define Field. choices. TextChoices and IntegerChoices types are provided for text and integer fields, while a Choices class can be used to define a compatible enumeration for other concrete data types. These custom enumeration types support human-readable labels that can be translated and accessed via a property on the enumeration or its members.

The other main improvement is to filter expressions. Expressions that output BooleanField can now be used directly in QuerySet filters, without having to first annotate and then filter against the annotation.

Django 3 can be downloaded from the Django project's download page.


 django

More Information

Django Project Website

Related Articles

Django 1.3 released

Komodo 10.2 Adds Slack Sharing

 

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Bun Shell Released
29/02/2024

The developers of the Bun JavaScript runtime have released Bun Shell, a new experimental embedded language and interpreter in Bun that lets you run cross-platform shell scripts in JavaScript and TypeS [ ... ]



Stack Overflow On Google Cloud
06/03/2024

Stack Overflow and Google Cloud have announced a partnership to deliver new gen AI-powered capabilities to developers through the Stack Overflow platform, Google Cloud Console, and Gemini for Google C [ ... ]


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info