Django 1.2 crash course needed

Posted by delusionalweekendwarrior on Stack Overflow See other posts from Stack Overflow or by delusionalweekendwarrior
Published on 2010-05-21T05:05:58Z Indexed on 2010/05/21 5:10 UTC
Read the original article Hit count: 231

Filed under:
|
|

I know Python but I've never used Django.

What do I need to know about Django 1.2 to port my typical PHP CRUD web application in one weekend? (Yes I've read Joel Spolsky's Netscape article :-))

I'm reading this tutorial right now and it's excellent. I'm already playing around with inspectdb to generate my models from the existing schema.

I'm planning to use the following features of Django this weekend:

  • Fragment caching
  • Static asset versioning (for far future expires)
  • Schema migrations (or whatever they're called in Django)
  • Auto-admin (and customize it later)
  • The test framework
  • ...other stuff I probably don't know about yet

I'm familiar with all these concepts in other languages/frameworks, except for the ORM which I've never used. I know SQL pretty well though.

Any links, sage bits of advice, gotchas, stuff not mentioned in the (excellent) tutorial/docs, or stuff that is mentioned but warrants repeating == very welcome. Thanks!

© Stack Overflow or respective owner

Related posts about python

Related posts about django