Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
markfinger/django-react
-
4 Lessons learned about multivariate testing
-
Scaling Django to 8 Billion Page Views | Disqus: The Official Blog
-
django-registration-redux 1.1 documentation — django-registration-redux 1.1 documentation
-
django-registration-redux 1.1 documentation — django-registration-redux 1.1 documentation
-
Welcome to django-inspectional-registration’s documentation! — django-inspectional-registration 0.4.6 documentation
-
Welcome to django-inspectional-registration’s documentation! — django-inspectional-registration 0.4.6 documentation
-
Introduction to Machine Learning with Python and Scikit-Learn
Learn Data Loading , Data Normalization , Feature Selection , Logistic Regression , Naive Bayes , Decision Trees in this ... -
9. User Authentication — How to Tango with Django 1.7
-
9. User Authentication — How to Tango with Django 1.7
-
Unofficial Windows Binaries for Python Extension Packages
This page provides 32- and 64-bit Windows binaries of many scientific open-source extension packages for the official CPython distribution of ... -
How to use setUpTestData in Django 1.8
-
How to use setUpTestData in Django 1.8
-
etianen/django-reversion
Django track-changes plugin -
Introduction | Django Girls Tutorial
Empower yourself. Learn how to make web apps from the ground up. Start w/this great Django tutorial. @djangogirls -
Introducción a Python / Django // Speaker Deck
-
Introducción a Python / Django // Speaker Deck
-
timezone - django 1.4 - can't compare offset-naive and offset-aware datetimes - Stack Overflow
Check the thorough document for detail info. Normally, use django.utils.timezone.now to make an offset-aware current datetime >>> from django.utils import timezone >>> timezone.now() datetime.datetime(2012, 5, 18, 13, 0, 49, 803031, tzinfo=) And django.utils.timezone.make_aware to make an offset-aware datetime >>> timezone.make_aware(datetime.datetime.now(), timezone.get_default_timezone()) datetime.datetime(2012, 5, 18, 21, 5, 53, 266396, tzinfo=) You could then compare both offset-aware datetimes w/o trouble. Furthermore, you could convert offset-awared datetime to offset-naive datetime by stripping off timezone info, then it could be compared w/ normal datetime.datetime.now(), under utc. >>> t = timezone.now() # offset-awared datetime >>> t.astimezone(timezone.utc).replace(tzinfo=None) datetime.datetime(2012, 5, 18, 13, 11, 30, 705324) USE_TZ is True 'by default' (actually it's False by default, but the settings.py file generated by django-admin.py startproject set it to True), then if your DB supports timezone-aware times, values of time-related model fields would be timezone-aware. you could disable it by setting USE_TZ=False(or simply remove USE_TZ=True) in settings. -
Writing custom django-admin commands | Django documentation | Django
-
Writing custom django-admin commands | Django documentation | Django
-
Tavish Armstrong
-
Tavish Armstrong
-
Effective Django — Effective Django
-
charles leifer | Describing Relationships: Django's ManyToMany Through
-
charles leifer | Describing Relationships: Django's ManyToMany Through