Python cloud hosting other than Google App Engine?

2019-03-08 02:28发布

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.

7条回答
贼婆χ
2楼-- · 2019-03-08 02:33

If you're looking for python website / webservice hosting, there are now (a year on from OP) a couple of beta options that look interesting (these may be in production versions by the time this answer is read!)

http://ep.io (any python hosting) http://gondor.io (django hosting)

these are similar to GAE, but offer traditional back ends - RDBMS (PostGRES).

However picloud and http://www.pythonanywhere.com/ are quite different in that they offer the ability to run and retrieve arbitrary python code in the cloud (no need for an explicit wsgi-built api).

查看更多
【Aperson】
3楼-- · 2019-03-08 02:36
我命由我不由天
4楼-- · 2019-03-08 02:41

Yup..Microsoft Azure:

https://www.windowsazure.com/en-us/develop/python/

Python is now a 1st class language on Azure.

查看更多
叛逆
5楼-- · 2019-03-08 02:46

https://www.dotcloud.com/ might also work for your needs

查看更多
萌系小妹纸
6楼-- · 2019-03-08 02:55

You can now use Heroku for Python.

查看更多
相关推荐>>
7楼-- · 2019-03-08 02:55

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.

查看更多
登录 后发表回答