Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Django project optimization guide (part 1)
-
Create React App and Django
-
Django project optimization guide – Part 1
-
Django project optimization guide (part 1)
-
Instagram Makes a Smooth Move to Python 3 - The New Stack
-
Django project optimization guide (part 1)
-
how to use python 3.6.1 in an anaconda3 env w/ Apache + mod_wsgi + flask on aws ubuntu ec2 instance - Google Groups
-
django-silk/silk: Silky smooth profiling for Django
-
Host, run, and code Python in the cloud: PythonAnywhere
via https://tutorial.djangogirls.org/en/deploy/ -
Django project optimization guide (part 1)
Django is a powerful framework used in many great projects. It provides many batteries, that speed up development and therefore reduces the price of it. When a project becomes large and is used by many users you inevitably will run into performance problems. In this guide, I will try define potential problems and how to fix them. This is the first part of a series about Django performance optimization. It will cover profiling and Django settings. -
#25582 (Add a way to build URLs with query strings) – Django
def reverse(*args, **kwargs): get = kwargs.pop('get', {}) url = orig_reverse(*args, **kwargs) if get: url += '?' + urllib.urlencode(get) return url -
Django project optimization guide (part 1)
-
A Django template library for manipulating URLs
Spurl is not a replacement for Django's built-in {% url %} template tag. It is a general-purpose toolkit for manipulating URL components in templates. You can use it alongside {% url %} if you like (see below). Spurl provides a single template tag, called (surprisingly enough), spurl. You call it with a set of key=value keyword arguments, which are described fully below. -
Django project optimization guide (part 1)
This is the first part of a series about Django performance optimization. It will cover profiling and Django settings. -
5 ways to make Django Admin safer – Hacker Noon
-
Django project optimization guide (part 1)
-
Django project optimization guide – Part 1
-
Django project optimization guide (part 1)
-
Django project optimization guide (part 1)
-
pydanny/cookiecutter-django: Cookiecutter Django is a framework for jumpstarting production-ready Django projects quickly.
-
GitHub - czue/django-wedding-website: A django-powered wedding website and guest-management system
-
Welcome to Hypothesis! — Hypothesis 3.11.6 documentation
Clever testing framework -
Jonathan Cox
-
GitHub - markfinger/python-react: Server-side rendering of React components
-
How to Extend Django User Model