Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Pricing - Divio
-
Building dashboards with Django and D3
-
python 2.7 - Django Middleware, single action after login - Stack Overflow
-
Working with Django View Decorators
Vitor Freitas -
Django KFIMember Tutorial Part III - Configure Inital PostgreSQL Database Locally and Remotely in Openshift
-
scottwoodall/django-react-template: Django & React Template For Building Web Applications
-
Modern Django: Part 1: Setting up Django and React — v1k45
-
Developing Our New Software: Why We Love React, Redux, and Django
Good use case / testimonial for using React (and Redux). This is a company that seems to have had a lot of success with it. -
betterself/webpack.config.js at master · jeffshek/betterself
-
Create React App and Django
-
Full stack Django: Quick start with JWT auth and React/Redux (Part II)
-
Using Webpack transparently with Django + hot reloading React components as a bonus - Owais Lone
-
Jonathan Cox
-
Twitter
I did this #django talk. And many things went awry. But the #nbpy attendees were so, so awesome. They laughed with… -
Twitter
RT @rlconley: Hi #django friends! You have until Dec. 9 to sign up to run for the @djangoproject board. No specific experience is… -
python - Django DRF with oAuth2 using DOT (django-oauth-toolkit) - Stack Overflow
up vote 15 down vote favorite 3 I am trying to make DRF work with oAuth2 (django-oauth-toolkit). I was focusing on http://httplambda.com/a-rest-api-with-django-and-oauthw-authentication/ First I followed that instruction, but later, after getting authentication errors, I setup this demo: https://github.com/felix-d/Django-Oauth-Toolkit-Python-Social-Auth-Integration Result was the same: I couldn't generate access token using this curl: curl -X POST -d "grant_type=password&username;=&password;=" -u ":" http://127.0.0.1:8000/o/token/ I got this error: {"error": "unsupported_grant_type"} -
django/tests.py at master · django/django
This is not a great example :/ Hoping for a unit test but this is more of an integration test -
Unit Testing a Django Form with a FileField - Stack Overflow
May be this is not quite correct, but I'm creating image file in unit test using StringIO: imgfile = StringIO('GIF87a\x01\x00\x01\x00\x80\x01\x00\x00\x00\x00ccc,\x00' '\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02D\x01\x00;') imgfile.name = 'test_img_file.gif' response = self.client.post(url, {'file': imgfile}) -
How to Use Django's Built-in Login System
from django.contrib.auth import views as auth_views urlpatterns = [ url(r'^login/$', auth_views.login, name='login'), url(r'^logout/$', auth_views.logout, name='logout'), url(r'^admin/', admin.site.urls), ] -
Django Applications — Django Best Practices
-
GitHub - pydanny/cookiecutter-django: Cookiecutter Django is a framework for jumpstarting production-ready Django projects quickly.
-
Welcome - Python Django Tutorials
With Django 1.11 LTS finally here, I am moving things around a bit. You can still find the Table of Contents for the Django Book here – I will be updating it to 1.11 incrementally over the next few months. Check out the contents page for more info. -
How to use permission_required decorators on django class-based views - Stack Overflow
-
encode/apistar: A smart Web API framework, designed for Python 3. 🌟
-
0xadada/dockdj: A recipe for building 12-factor Python / Django web apps with multi-container Docker and deploying to Amazon AWS using Elastic Beanstalk.