Getting started with Python Web Development

For Python lovers who wish to get started with Python Web Development, you’ll need to do setup a nice working environment

  1. Install Python
    Python has 2.7x and 3.x, many packages still support Python 2.7x so you will need to keep this in mind before beginning on a project
  2. Install package installers (pip, easy_install)
    Python’s magical packages
  3. Install VirtualEnv
    Useful for creating virtual environment so that packages and dependencies do not conflict and important when using on WHM/cPanel so that you do not mess with the Python version needed for its core
  4. Use a framework
    Django and Web2Py are some popular web frameworks to get started with, micro-framworks such as Flask are also interesting depending on your project needs.