Django's Async Future - Tom Christie (Ep46 Replay)
Aug. 17, 2022, 5 p.m. (2 years, 3 months ago)
0 Comments
- Tom Christie personal site
- Encode
- DjangoCon Europe 2019 - Sketching out a Django redesign
- DjangoCon US 2019 - Just Add Await: Retrofitting Async into Django
- Django REST Framework
- MkDocs
- mkautodoc
- HTTPX
- urllib3
- Starlette
- hostedapi - demo app built with Starlette
Support the Show
This podcast does not have any ads or sponsors. To support the show, please consider purchasing a book, signing up for Button, or reading the Django News newsletter.
No comments have been posted yet, be the first one to comment.
Similar Podcasts
#066 PYTHON vs. Javascript - Podcast DevPro
Essa disputa é fácil de resolver hein! Eu e o Moacir vamos debater os prós e contras de cada linguagem num papo descontraído. Te aguardo lá. #SouDevPro
---
Junte-se ao MELHOR e MAIS COMPLETO BOOTCAMP Python do Brasil
👨💻 Bootcamp DevPro: http://python.pro.br/r/bootcamp-devpro
🐍 Curso de Pyt...
Django REST Framework
DRF Google Group
DjangoCon 2018 Talk: Finally Understand User Authentication in DRF
DRF Official Documents: Authentication
django-cors-header package
Swagger vs OpenAPI
API Star
Starlette
GraphQL vs REST
SPONSORING OPTIONS
DRF Sponsors
Django Software Foundation
SHAMELESS PLUGS
William's books ...
Wagtail CMS - Tom Dyson
Wagtail CMS
Wagtail Slack Channel
Torchbox
Drupal
Royal College of Arts
Wagtail Core Team
PEP 405: Python Virtual Environments
CodeRed CMS
Wagtail Features
wagtail-alt-generator
DjangoConUS 2018 - Django and Machine Learning
awesome-wagtail
awesome-django
wagtail-experiments A/B testing
SHAMELESS ...
Authentication
DjangoCon US 2018 Talk - Finally Understand Authentication in Django REST Framework
django.contrib.auth
DjangoCon Europe 2018 - Growing old gracefully: on being a career programmer
django-allauth
django-registration
cookiecutter-django
DjangoX
DRF Authentication Docs
django-rest-framework-simplejwt...
Django vs Flask - Michael Herman
Michael Herman personal site
TestDriven.io
Cypress - End-to-End JavaScript Testing
Django vs Flask in 2019: Which Framework to Choose
SHAMELESS PLUGS
William's books on Django
Carlton's website Noumenal
...
Show Information
Django Chat
A biweekly podcast on the Django Web Framework by Will Vincent and Carlton Gibson.
Mentioned Topics
Django
Django is a web application framework written in Python. The framework was crafted by developers for developers to make it easier to build better web applications with less code, Hence Django's slogan - The web framework for perfectionists with deadlines....
Python
Python is object-oriented, high-level, general-purpose programming language. The project was first started and released in 1991 by Guido van Rossum with a design philosophy that emphasizes code readability. Today Python has evolved into a first-class prog...
HTTPX
...
Similar Tutorials
Query your Django REST API like a GraphQL API with Django RESTQL
The hype around GraphQL in recent years has been hard to ignore for any web developer. In short, GraphQL is a query language and runtime for APIs, and it has taken the web with storm.
GraphQL makes it possible for front-end developers to query data from a single API endpoint and retri...
How to Cache Django REST Framework with Redis
Django REST Framework is an awesome package that will aid you in writing REST APIs faster with Django and Python. Though Django REST Framework has many strengths, performance out-of-the-box might not be one of them. However, there are many ways to fix that, and one of them is caching....
How to Rebuild Django-MPTT Tree Structure
Most application utilize some sort of tree structure to managing data, in one form or another. One common use-case is nested categories.
If you are using Django for your current project and are in need to implement tree structures, there is a big change you have come across Django-MPT...