#pragma section-numbers off
[[TableOfContents]]

= 概要 =

= 公式サイト =
[http://www.djangoproject.com/ Django | The Web framework for perfectionists with deadlines]

= 関連サイト =
[http://www.djangoproject.jp/ Django を体験しよう | Djangoと日本の仲間たち]

= インストール =
http://www.djangoproject.com/download/
{{{
tar xzvf Django-0.91.tar.gz
cd Django-0.91
sudo python setup.py install
}}}

= 利用方法 =
[http://www.djangoproject.com/documentation/ Django | Documentation]

[http://www.djangoproject.com/documentation/tutorial1/ Django | Documentation | Writing your first Django app, part 1]:Tutoriall

[http://www.everes.net/doc/djangonote/tutorial1/ Part 1: Initialization, creating models, the database API 日本語訳]

{{{
django-admin.py startproject mysite
}}}

{{{
CREATE DATABASE django DEFAULT CHARACTER SET utf8;
GRANT ALL ON django.* TO django@localhost IDENTIFIED BY "django";
}}}

DJANGO_SETTINGS_MODULE

= ツールなど =
 * [https://bitbucket.org/lukaszb/django-projector/src lukaszb / django-projector / source — Bitbucket]

= 参考サイト =
[http://www.everes.net/ everes.net | スパムとか]

[http://d.hatena.ne.jp/oqre/20070319/1174253303 oqreの日記 - さくらインターネットでDjango]

[http://hdknr.bitbucket.org/celery/ Django-Celeryで非同期処理 — Django-Celeryで非同期処理 1 documentation]

----
CategoryPython