Django REST Framework
March 27, 2019, 5 p.m. (5 years, 7 months ago)
0 Comments
- 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
SHAMELESS PLUGS
- William's books on Django
- Carlton's website Noumenal
No comments have been posted yet, be the first one to comment.
Similar Podcasts
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
...
MySQL & Security - Adam Johnson
Adam Johnson personal site
django-mysql
MariaDB
Django Hosting Options
Django’s Test Case Classes and a Three Times Speed-Up
DjangoCon 2019 Europe - Django and Web Security Headers
SHAMELESS PLUGS
William's books on Django
Carlton's website Noumenal
...
Ruby on Rails & Django- David Heinemeier Hansson
David is the creator of Ruby on Rails. We discuss "batteries-included" web frameworks, maintaining an open source community, versioning, upgrades, and falling in love with a programming language....
Django @Instagram - Carl Meyer
OddBirdDjango @ Instagram - Django Under the Hood 2016Testing & Django - PyCon 2012PyCon 2017 Keynote - Road to Python 3 at InstagramPython at Scale: Strict ModulesSupport the ShowOur podcast does not have a sponsor and is a labor of love. To support the show, please consider purchasing one of the b...
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....
Django REST Framework
Django REST Framework is a powerful package for building REST API's with the Django Web Framework and Python. Django REST Framework comes with a browsable API out of the box, a feature that improves the developer experience dramatically. If you have devel...
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...