Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
feincms/feincms: A Django-based CMS with a focus on extensibility and concise code
-
ridethepony/django-fiber: Django Fiber - a simple, user-friendly CMS for all your Django projects
-
Django Under The Hood, Amsterdam | Opbeat
Videos from Django Under The Hood -
Token-based authentication with Django and React
-
Django migrations without downtimes
Most web applications use a relational database. The database schema needs to be changed over time as features are added, changed or removed. These database migrations need to be designed and integrated in your deployment process. On the one hand, scheduled downtimes can be expensive for the business and are painful to organize for larger sites or organizations. On the other hand, applying migrations on a live system can bring down your web-server in counter-intuitive ways. I’ll talk about common schema change scenarios and how those can be safely carried out on a live system with a Postgres database. We’ll look at locking and timing issues, multi-phase deployments and migration system peculiarities. -
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
-
GitHub - Aviah/one-click-django-polls-tutorial: Django tutorial with git & deployment to a real website, based on the official polls tutorial
-
Collaborative Filtering — Fuzzy-feeling test data
A lot of the data we deal with contains personally identify information (PII), since we are running research studies on our systems. To protect the privacy of our study participants, we are careful with how we transmit and analyze data containing PII. This is the right way to be, but it makes debugging problems and testing new releases awkward — we need to be careful where we put data that contains PII, which means not putting it on developer laptops or on test servers. -
andrewgodwin/channels-examples: Example projects using Django Channels
-
Token-based authentication with Django and React
My tutorial on getting basic user authentication set up with @reactjs and a #django rest framework backend. -
The Art of Graceful Reloading
-
django-compressor/django-compressor: Compresses linked and inline javascript or CSS into a single cached file.
-
django-sabridge - SQLAlchemy access to Django models — django-sabridge v0.0 documentation
-
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
-
On spending too long setting up one webserver (Phil Gyford’s website)
-
Chef Community Cookbooks with AWS OpsWorks Chef 12 | Chef Blog
-
Django Channels — Channels 1.0 documentation
-
What is the best tutorial or book for Backbone.js? - Quora
I know basic Javascript and jQuery, but I want to learn how to build "rich web apps" with Backbone.js. -
Welcome to django-angular’s documentation! — django-angular 0.8.2.dev0 documentation
-
Finally, Real-Time Django Is Here: Get Started with Django Channels | Heroku
Finally, Real-Time Django Is Here: Get Started with Django Channels -
https://channels.readthedocs.org/en/latest/index.html
Original link found at: https://channels.readthedocs.org/en/latest/concepts.html -
Coderwall | Returning JSON/JSONP from a Django view with a little
def json_response(func): """ A decorator thats takes a view response and turns it into json. If a callback is added through GET or POST the response is JSONP. """ def decorator(request, *args, **kwargs): objects = func(request, *args, **kwargs) if isinstance(objects, HttpResponse): return objects try: data = simplejson.dumps(objects) if 'callback' in request.REQUEST: # a jsonp response! data = '%s(%s);' % (request.REQUEST['callback'], data) return HttpResponse(data, "text/javascript") except: data = simplejson.dumps(str(objects)) return HttpResponse(data, "application/json") return decorator -
Serializer fields - Django REST framework
-
Django Unit Tests Against Unmanaged Databases | scot hacker's foobar blog
-
Springload: Web design and Development - Wellington, New Zealand