Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Django Web Framework (Python) - Learn web development | MDN
for when you have some time to go through and learn what you're doing wrong -
squ1b3r/Djaneiro: Django support for Sublime Text 2/3
-
The Django Speed Handbook: making a Django app faster
Over the course of developing several Django apps, I’ve learned quite a bit about speed optimizations. Some parts of this process, whether -
Use Pathlib in Your Django Settings File
-
Using Webpack with Django: no plugins required!
How to setup Django with Webpack, without plugins to glue them together, using both Django static _and_ Webpack. -
wsvincent/awesome-django: A curated list of awesome things related to Django
-
graphql-python - Introduction
-
Graphene-Python
class Query(ObjectType): my_posts = DjangoFilterConnectionField(PostNode) def resolve_my_posts(self, info): # context will reference to the Django request if not info.context.user.is_authenticated: return Post.objects.none() else: return Post.objects.filter(owner=info.context.user) -
flavors/django-graphql-jwt: JSON Web Token (JWT) authentication for Graphene Django
-
Simon Willison - Instant serverless APIs, powered by SQLite - PyCon 2019 - YouTube
-
Creating Dynamic Forms with Django | Caktus Group
-
Fullstack Django - learn Django and React
Summernote -
gitignore/Python.gitignore at master · github/gitignore · GitHub
-
Debugging a Containerized Django App in PyCharm | TestDriven.io
-
(207) Sponsor Workshop: Heroku - Casey Faist: From Project to Productionized on Heroku - YouTube
-
Bento — Find Flask and Django bugs delightfully fast, without changing your workflow
-
Nginx caching with django
-
Bento — Find Flask and Django bugs delightfully fast, without changing your workflow
-
Secure Deployment Checklist
When you move you application in production there are a couple of security related django settings you need to be are of. In this lesson I will go over security checklist in production mode. -
dinoperovic/django-salesman: Headless e-commerce framework for Django.
-
jieter/django-tables2: django-tables2 - An app for creating HTML tables
-
Preventing SQL Injection in Django
-
Argparse Module
In this lesson we explore in detail python's built-in argument parsing module - argparse. As usually we combine little bit of theory with very colorful and practical examples. -
Simple Django Deployment: A Six-Page Guide
Windows-centric but still useful -
How to Score A+ for Security Headers on Your Django Website - Adam Johnson