Hacker News new | ask | show | jobs
by amourgh 5454 days ago
thank you jwdunne. what are some books that can do web dev with python.

for example with asp.net,working with vs .net simplifies things,html is separated with codebehind(c#)

2 comments

The Django Book

http://www.djangobook.com/en/2.0/chapter01/

From the intro:

If you don’t have experience programming in Python, you’re in for a treat. It’s easy to learn and a joy to use! Although this book doesn’t include a full Python tutorial, it highlights Python features and functionality where appropriate, particularly when code doesn’t immediately make sense. Still, we recommend you read the official Python tutorial, available online at http://docs.python.org/tut/. We also recommend Mark Pilgrim’s free book Dive Into Python, available at http://www.diveintopython.org/.

I really recommend just reading the Django docs: https://docs.djangoproject.com/en/1.3/

They are truly magnificent.

OKi thank you