views:

144

answers:

4

What options exist for Python Cloud Hosting other than Google App Engine?

I'm looking for solutions that let me write and publish code to servers that will scale up automatically to meet demand. I don't want to spend my time on IT tasks.

So far, I've really only found this: https://www.picloud.com/

App Engine is great, but has some immaturity limitations such as lack of https support.

+4  A: 

Google App Engine is a very unique cloud platform and you won't find any other similar hosting. Except maybe hosting your own AppScale platform somewhere : http://code.google.com/p/appscale/ But I don't think it's ready yet.

The closest to GAE would likely be some sort of Heroku-clone for Python. I know of two upcoming services :

You could also try Media Temple Grid Service which has Django grid containers : http://mediatemple.net/webhosting/gs/features/containers.php#django

Franck
+1  A: 

You could consider something like AppScale or TyphoonAE:

http://code.google.com/p/appscale/

http://code.google.com/p/typhoonae/

These are independent and open-source implementations of GAE that can be hosted anywhere you want, and that allow you to get around some of the issues with GAE (e.g. the HTTPS issue you mentioned).

Both support GAE/P but AppScale's Python support is a few versions behind.

qwavel
A: 

Is ready check Web Hosting Dyweb

Dyweb Hosting
A: 

How about : http://www.picloud.com/

pyfunc
He mentioned that one in the question.
I. J. Kennedy