Python Frameworks
There are quite a few Python web frameworks, but here are some of the best:
Django – We’re going to use this today. It has a huge set of features, but remains simple to use. The documentation is also excellent, so if you get stuck, you’ll have the easiest time solving your problem with Django.
Grok – Another framework with a feature set that comes close to Django. If you decide you don’t prefer Django, this is a good alternative.
WebPy – A much more lightweight framework. It doesn’t have as many features, though it did power Reddit for a period of time!
TurboGears – Though previously having a reputation for poor documentation, TurboGears has improved substantially in the last year.
A more comprehensive list can be found on the Python website if you’re in need of additional options. Today we’re going to set Django up for development on a local machine, and then build a simple blog. We’re also going to review the process of installing it on a remote web server.
Installing Django
We’ll be performing most of our work today in the Terminal. This should all work on Mac and Linux; however, if you’re running Windows, the process is somewhat different. A familiarity with the command line isn’t necessary if you’re only writing Python, though, if you’re planning on using Django, or running a dynamic website in general, it’s worth learning.
Terminal Tutorials
Consider reviewing these tutorials to get yourself up and running with the Terminal.
An intro to working in the terminal, which covers Git and Github too.
10 tips to work faster in the terminal.
Here are the commands you need to install Django. It’s not compatible with Python 3, so you’ll need to install version 2.7 or earlier to get it running.
Read more: netTuts+
QR: