Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
internet explorer - Local sites not displaying in VirtualBox when using Django's local development server? - Stack Overflow
By default the dev server binds to localhost. to run it on all interfaces use ./manage.py runserver 0.0.0.0:8000 -
Symposion Conference Management Software from Eldarion
-
How to use Django's Proxy Models - I leverage synergies.
-
Welcome to Mastering Django - Mastering Django
-
18F/tock
-
18F/discovery- django app with selenium tests
-
How to Tango with Django: A Python Django Tutorial
-
APSL/puput · GitHub
Python/Django developers, we've released Puput blog system! Go check it out at @apsl_web Github #Django #Python -
ottoyiu/django-cors-headers
Django app for handling the server headers required for Cross-Origin Resource Sharing (CORS) Allow cloverfoodlab.com/clovercast to fetch data from cloverpos.com -
Coverage.py — Coverage.py 4.0 documentation
python code coverage tool for testing -
Forms have never been this crispy — django-crispy-forms 1.0.0 documentation
-
Creating Conditionally Required Fields in Django Forms
How to build forms that hide fields from users unless they answer previous questions appropriately. -
Websockets for Django applications using Redis as message queue — django-websocket-redis 0.4.4 documentation
can use this infrastructure to handle sending menu item availability updates instead of polling for changes. can also use for station updates. a restaurant / order station is a channel. -
QuerySet API reference | Django documentation | Django
iterator()¶ Evaluates the QuerySet (by performing the query) and returns an iterator (see PEP 234) over the results. A QuerySet typically caches its results internally so that repeated evaluations do not result in additional queries. In contrast, iterator() will read results directly, without doing any caching at the QuerySet level (internally, the default iterator calls iterator() and caches the return value). For a QuerySet which returns a large number of objects that you only need to access once, this can result in better performance and a significant reduction in memory. Note that using iterator() on a QuerySet which has already been evaluated will force it to evaluate again, repeating the query. Also, use of iterator() causes previous prefetch_related() calls to be ignored since these two optimizations do not make sense together. Warning Some Python database drivers like psycopg2 perform caching if using client side cursors (instantiated with connection.cursor() and what Django’s ORM uses). Using iterator() does not affect caching at the database driver level. To disable this caching, look at server side cursors. -
Getting Started with Django
-
33 projects that make developing django apps awesome | elweb
tastypie and debug toolbar -
DjangoCon 2015 - YouTube
-
DjangoCon 2015 videos now on Youtube : django
-
buckmaxwell/neoapi
A package for serializing json api compliant responses from neomodel StructuredNodes -
wooey/Wooey
Wooey - A Django app which creates automatic web UIs for Python scripts. -
Customizing Django Templates Course
RT @treehouse: We released a new #Django course! Check out Customizing Django Templates with @laceynwilliams: -
Treehouse on Twitter: "We released a new #Django course! Check out Customizing Django Templates with @laceynwilliams: http://t.co/rFNiil9Y98 http://t.co/yxTrOmGb9N"
RT @treehouse: We released a new #Django course! Check out Customizing Django Templates with @laceynwilliams: -
facebook-analytics-service/redshift access demo.ipynb at notebooks · pauladam/facebook-analytics-service
Redshift / django python notebook -
Building and Distributing Packages with Setuptools — Setuptools documentation
-
Package Your Python Django Application into a Reusable Component | Python Central