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

Aprendendo Python

Para começar bem com Python:

http://www.async.com.br/projects/python/pnp/python.html

 

Erros comuns:

http://programeempython.blog.br/2013/07/confusoes-comuns-para-iniciantes-em.html

programeempython.blog.br/2013/08/erros-comuns-para-iniciantes-em-python.html

 

http://programeempython.blog.br/2012/10/interfaces-graficas-com-python.html

Python e QT4:

rra.etc.br/MyWorks/python/

Mais sobre python:

http://pythonclub.com.br/

http://www.nacaolivre.com.br/python/desenvolvendo-em-python/

bd sqlite:

http://pythonclub.com.br/gerenciando-banco-dados-sqlite3-python-parte1.html