Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Django snippets: Black magic request woman
neat django global request hack -
Blog 101Ideas.cz
-
jQuery Star Rating plugin as a frontend for Django-ratings | Azavea Labs
-
Django | The Web framework for perfectionists with deadlines
-
MySQL for Python | Download MySQL for Python software for free at SourceForge.net
-
Setup Django on Windows with Apache and MySQL in 15 mins - Venky's Blog
-
Rails/Django Comparison
-
django-signedcookies - Transparently attach and validate signatures on your cookies - Google Project Hosting
-
django-tagging - A generic tagging application for Django projects - Google Project Hosting
-
Python Package Index : django-taggit 0.9.3
-
Alex Gaynor -- django-taggit 0.9 Released
-
Welcome to django-taggit’s documentation! — django-taggit v0.9.3 documentation
-
Django users | Google Groups
-
The Django Book: Version 2.0 (English)
-
Django – vicalloy's trac
-
python - Filter zipcodes by proximity in Django with the Spherical Law of Cosines - Stack Overflow
-
python - django syncdb and an updated model - Stack Overflow
-
Django Userena - Accounts for your Django application
-
Example Facebook application in Django
-
Notes on using pip and virtualenv with Django « SaltyCrane Blog
-
Haystack - Search for Django
Search doesn't have to be hard. Haystack lets you write your search code once and choose the search engine you want it to run on. With a familiar API that should make any Djangonaut feel right at home and an architecture that allows you to swap things in and out as you need to, it's how search ought to be. Haystack is BSD licensed, plays nicely with third-party app without needing to modify the source and supports Solr, Whoosh and Xapian. -
PostgreSQL数据库完美备份恢复
PostgreSQL自带一个客户端pgAdmin,里面有个备份,恢复选项,也能对数据库进行备份 恢复(还原),但最近发现数据库慢慢庞大的时候,经常出错,备份的文件过程中出错的几率那是相当大,手动调节灰常有限。所以一直寻找完美的备份恢复方案。梦里寻他千百度,伊人却在灯火阑珊处...其实PostgreSQL内置不少的工具,寻找的备份恢复方案就在其中:pg_dump,psql。这两个指令在数据库的安装目录下,比如我自己本地安装的,路径形如:C:\Program Files\PostgreSQL\9.0\;然后进入到bin文件夹,会看到不少的exe文件,这就是PostgreSQL内置的工具了。里面会找到pg_dump.exe,psql.exe两个文件。我们怎么用他们?用法:备份数据库,指令如下:pg_dump -h 164.82.233.54 -U postgres databasename > C:\databasename.bak开始-运行-cmd 弹出dos控制台;然后 在控制台里,进入PostgreSQL安装目录bin下:cd C:\Program Files\PostgreSQL\9.0\bin最后执行备份指令:pg_dump -h 164.82.233.54 -U postgres databasename > C:\databasename.bak指令解释:如上命令,pg_dump 是备份数据库指令,164.82.233.54是数据库的ip地址(必须保证数据库允许外部访问的权限哦~),当然本地的数据库ip写 localhost;postgres 是数据库的用户名;databasename 是数据库名。> 意思是导出到C:\databasename.bak文件里,如果没有写路径,单单写databasename.bak文件名,那么备份文件会保存在C:\Program Files\PostgreSQL\9.0\bin 文件夹里。恢复数据库,指令如下:psql -h localhost -U postgres -d databasename < C:\databasename.bak指令解释:如上命令,psql是恢复数据库命令,localhost是要恢复到哪个数据库的地址,当然你可以写上ip地址,也就是说能远程恢复(必须保证数据库允许外部访问的权限哦~);postgres 就是要恢复到哪个数据库的用户;databasename 是要恢复到哪个数据库。< 的意思是把C:\databasename.bak文件导入到指定的数据库里。以上所有的是针对windows而言的,如果在linux下,会不会有效?在linux里依然有效。有一个值得注意的是:如果直接进入PostgreSQL的安装目录bin下,执行命令,可能会出现 找不到pg_dump,psql的现象,我们在可以这样:备份:/opt/PostgreSQL/9.0/bin/pg_dump -h 164.82.233.54 -U postgres databasename > databasename.bak恢复:/opt/PostgreSQL/9.0/bin/psql -h localhost -U postgres -d databasename < databasename.bak好了就写这么多了。 -
Django settings template / unfoldthat.com
-
Are there any good django hosts with servers outside of the USA? : django
This here sounds like someone wanting to do something, uh, well ... #django -
Weblog | Finding a Good Django Host