Django Famework Python

Django é um framework para web desenvolvido com a liguaguem Python.

Por onde começar:

http://www.aprendendodjango.com/

 

Instalando via apt-get:

First install python-setuptools:

$ sudo apt-get install python-setuptools

Install Django:

$ sudo easy_install django

ou

$ sudo pip install Django==1.7.4

 

Criando um projeto :

$ python django-admin.py startproject projeto

iniciando uma aplicação do projeto:

$ python manage.py startapp aplicativo

Sincronizando os modelos e o banco de dados:

$ python manage.py syncdb

 

Tutoriais:

https://docs.python.org/2/tutorial/

 http://lightbird.net/dbe/index.html

Fontes:

 

Varios links e vídeos tutoriais: MUITO BOM:

http://ericstk.wordpress.com/2013/05/08/django-fontes-de-estudo-e-referencias/

Video aulas:

https://osantana.me/curso-de-python-e-django/

django Brasil:

http://docs.djangobrasil.org/intro/tutorial01.html

Como usar o Django com o Apache através do mod_wsgi:

http://docs.djangobrasil.org/howto/deployment/modwsgi.html#howto-deployment-modwsgi

http://blog.gustavohenrique.net/2009/01/servidor-compartilhado-django-php-configurando-virtualhost-no-apache-com-mod_wsgi/

http://pythonclub.com.br/configurando-ambiente-django-com-apache-e-mod-wsgi.html