mighty python tools
pylint
check your code’s quality with pylint
install with ‘easy_install’, check with ‘pylint whatever.py’
virtualenv
installs an isolated python environment, which overloads system-wide python packages. Great for pragmatic write-execute-often programmers.
install with ‘easy_install’, create with ‘virtualenv what-ever’, add ‘what-ever/bin’ to your path variable.
mechanize
Stateful programmatic web browsing, simulates a fully-functional web browser. Install with ‘easy_install mechanize’, combine with ‘beautifulsoup’ to make it even better.
