I am using Python/Flask Microframework. (http://flask.pocoo.org/) to build a small app. Tested the app locally and deployed it to godaddy and there i am seeing "ERROR 400&q
Being on a shared environment means that you will most likely need to use CGI to deploy:
http://flask.pocoo.org/docs/deploying/cgi/
On shared webhosting, though, you might not have access to your Apache config. In this case, a file called .htaccess, sitting in the public directory you want your app to be available, works too but the ScriptAlias directive won’t work in that case:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f # Don't interfere with static files RewriteRule ^(.*)$ /path/to/the/application.cgi/$1 [L]
It is a bit tricky. I am starting a cPanel Deluxe account. The only way I have found is to install Python 3.x and then install virtualenv, and then use pip install requirements.txt to install what I need