So, there is quite a few Python web frameworks to choose from these days. Thats really nice. After Guidos appraisal of Django I have been giving it a try.
After a background in ASP its something quiet different: URL's are routed to a specific function, so no need for a file per URL. Arguments can be incorporated into the URL instead of having it in the querystring. Django also have a really nice ORM so you can write code without having to use SQL.
My initial project is to build a small CMS using Django.
The system will for a start consist of the following element:
Page
- name
- parentpage
Content
- page
- data
I'll post the code when i have got something working.
No comments:
Post a Comment