Quick Python Webserver in a custom Directory

This little one liner python snippet will allow you to run a quick python webserver in a custom directory and not the current directory.

pushd /var/www/html;python -m SimpleHTTPServer 80;popd