[Django]-Learning Django as an experienced ASP.NET developer

4đź‘Ť

Regardless of your background, if you want to learn DJango, try the free online Django Book.

👤Jon Cage

2đź‘Ť

I’m not aware of anything that will specifically compare ASP.NET code to Django/Python. There are a bunch of good books though. Practical Django Projects 2nd Edition by James Bennett is an excellent book. It has a couple of example applications you can build.

There’s also Pro Django by Marty Alchin that really gets into some of the guts of Django. There isn’t any “tutorial” kind of information here. It’s more just an extension of the documentation.

Both of these books talk some about reusability in Django, but they don’t dwell on it specifically that much. One of Django’s design goals has been to keep things modular and reusable. Because of this, there are a lot of mostly plug and play apps that you can drop into your project.

Once you get a little bit familiar with how Django works, you should check out Virtualenv and pip to manage each of your projects. It helps out a ton.

👤Alex Jillard

Leave a comment