Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
mjhea0/django-stripe · GitHub
-
Save The Change — Save The Change 1.0.0 Documentation
-
Django 1.5 Cheat Sheet
-
Workshop: Test-Driven Web Development with Django — Test-Driven Django Development 0.0.1 documentation
-
The Django template language: For Python programmers | Django documentation | Django
-
Migrating your Django Project to Heroku
-
A question about Django application architecture/REST API (2 separate instances working together) : django
-
pyvideo.org - Secrets of the testing masters
In this talk, you'll get a brief introduction to two of those tools - Mock and Factory Boy - showing when they should be used, and some practical examples of their usage in a Django test suite. -
pyvideo.org - Testing and Django
-
Getting started testing - Carl Meyer
-
Freelance and permanent job listings for django developers - djangogigs.com
-
Django Class-Based View Mixins: Part 1 - Rob Golding
-
George London's Blog - The Idiomatic Guide to Deploying Django in Production
-
Simple virtualenv usage with Django? - WebFaction Community
-
from the cloud: Emacs as a Django IDE with python-django.el
-
Schemaless Postgres in Django - Craig Kerstiens
-
OracleTestSetup – Django
-
yourlabs/django-autocomplete-light
A fresh approach to autocomplete implementations, specially for Django. -
Getting Started with Django Logging in 5 Minutes
-
Rogueleaderr - The Idiomatic Guide to Deploying Django in Production
-
Tagging with django-taggit - GoDjango.com
-
A Docker primer – from zero to a running Django app
python manage.py runserver 0.0.0.0:8000 -
Django升级到1.6遇到的两个问题快速备录
2goO原本很久没有升级了,Django版本停留在1.5,今天试试升级到1.6,修改了不少的问题,最后碰到两个问题,一个是时区问题,另一个是数据库的问题。时区问题出来类似编码出错的东西,我以为是py文件编码问题呢,一长串十六进制的字符,py使用了时间now的时候,都存在此错误,错误如下:'utf8' codec can't decode byte 0xd6 in position 0: invalid continuation byte. You passed in '\xd6\xd0\xb9\xfa\xb1\xea\xd7\xbc\xca\xb1\xbc\xe4' (<type 'str'>)有点烦躁,在settings.py把时区项设置为False :USE_TZ = False,虽然不是解决问题的办法,但让老项目暂时正常了,后期再纠正时区的问题,目前时间偏差几个小时。第二个数据库问题,有点莫名其妙,1.5版本没有出现过,错误如下:django.core.exceptions.ImproperlyConfigured: Error loading psycopg2 module: libpq.so.5: cannot open shared object file: No such file or directory百思不得其解,本地调试是正常的,到了服务器就不行了,唯一的区别是本地 DEBUG设置为True,到服务器为False...然后服务器上设置成调试模式DEBUG=True,问题依然。最后弄了点PostgreSQL东西,终于搞定了,做法如下:cd /etc/ld.so.conf.decho "/opt/PostgreSQL/9.2/lib" >> pgsql.confldconfig我的Ubuntu数据库安装在/opt/PostgreSQL/9.2,如果读者遇到此类问题,具体根据自己的情况设置。 -
Test-Driven Web Development with Python
-
Test-Driven Web Development with Python