Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Python Social Auth
-
Instagram
RT @laceynwilliams: Status: Filming a guest #django course for treehouse! #screencast #allday -
Say hello to our new open-source software for loading bulk data into PostgreSQL
-
How To Set Up Django with Postgres, Nginx, and Gunicorn on Ubuntu 14.04
Django is a powerful web framework that can help you get your Python application or website off the ground. Django includes a simplified development server for testing your code locally, but for anything even slightly production related, a more secure and powerful web server is required. -
How To Install and Configure Django with Postgres, Nginx, and Gunicorn | DigitalOcean
-
django-jsonfield 0.9.15 : Python Package Index
Now, it will validate the JSON on entry, and store it as a string in the database. When you instantiate/fetch the object, it will be turned back into a python list/dict/string. -
django-spillway/README.rst at master · bkg/django-spillway · GitHub
Django and Django REST Framework integration of raster and feature based geodata. Spillway builds on the immensely marvelous Django REST Framework by providing facilities for the handling of geospatial formats such as GeoTIFF, GeoJSON, and KML/KMZ. -
AJAX and Django Views [ brack3t ]
-
AWS load balancers with Django | Caktus Group
-
How to use permission_required decorators on django class-based views - Stack Overflow
Here's an alternative using class based decorators: from django.utils.decorators import method_decorator def class_view_decorator(function_decorator): """Convert a function based decorator into a class based decorator usable on class based Views. Can't subclass the `View` as it breaks inheritance (super in particular), so we monkey-patch instead. """ def simple_decorator(View): View.dispatch = method_decorator(function_decorator)(View.dispatch) return View return simple_decorator This can then be used simply like this: @class_view_decorator(login_required) class MyView(View): # this view now decorated -
erroneousboat/docker-django
A project to get you started with Docker and Django. -
Other Django-Wordpress Integration Projects — Wjordpress 0.2.2 documentation
-
django_linter
- Linter for django projects -
Introducing DJ-Static — Kenneth Reitz
Django static -
Two Scoops of Django: Best Practices for Django 1.8 – Two Scoops Press
-
AWS load balancers with Django | Caktus Group
-
aws-ansible-django-deployment/playbook.yml at 4268a3eb7fa259a50a95fe935999fd7c53eaabac · bee-keeper/aws-ansible-django-deployment
-
mirumee/saleor · GitHub
-
Django routing with the domain name | Conan Albrecht
A simple solution is to create a middleware class that adds the domain name to the path. The following code does exactly that. To install it, just place it somewhere, and reference it from the settings.py file. class DomainRedirectorMiddleware: def process_request(self, request): if request.META.get('HTTP_HOST', '') != '': tld = request.META['HTTP_HOST'].lower().split('.') if len(tld) >= 2: request.path = '/' + tld[-2] + request.path request.path_info = '/' + tld[-2] + request.path_info -
Django: Stop Writing Settings files — bruno.im
-
Advanced tutorial: How to write reusable apps | Django documentation | Django
-
bennylope/django-organizations
Django Organizations adds user-managed, multi-user groups to your Django project. Use Django Organizations whether your site needs organizations that function like social groups or multi-user account objects to provide account and subscription functionality beyond the individual user. -
Django tutorial
Full-stack JavaScript Developer -
ui/django-rq · GitHub
-
viewflow