views:

76

answers:

3

Some how some way I'm trying to get out of Ruby because things are just working and I don't necessarily know why. I'm taking the forest for the trees approach by which I mean I'm trying to get perspective by learning a new language; Python/Django seems to be the right way to go.

The first application I built in Rails was from the 5 min blog screencast by DHH and form there I was able to get by. I'm looking for a relevant resource for learning a Django application in particular I"m looking for a simple blog application.

+2  A: 

With a little bit of google-fu I turned up this relatively recent example:

Daniel DiPaolo
This is exactly what i want!
Sam
For what it's worth, the official Django tutorial is actually quite good as well and would be what I would recommend for everyone new to Django. So maybe if you run into issues with this one, try the official tutorial. Or if you finish this and want to learn some more, do the official one. It has a lot more information in it.
Daniel DiPaolo
+1  A: 

I would check out the official "writing your first..." tutorial on djangoproject.com: http://docs.djangoproject.com/en/dev/intro/tutorial01/

It's great and gets you started in no time.

steinar
+1  A: 

The Django site provides a tutorial on how to build a poll, which can be easily modified to build a blog. James Bennett's book, Practical Django Projects, also explains in significant detail how to build a blog/cms.

Andrew Sledge
thanks, i am looking for bare bones blog for the purpose of getting to know the framework by actually writing some code.
Sam