Google’s latest service – App Hosting

Have you checked out the app engine?

http://code.google.com/appengine/

Google is providing web app hosting for Python based apps.  There are a few limitations on what you can do (like no writing to disk, no relational database), but it’s free.

They say they hope to add support for more languages in the future, but I don’t expect to see Java on the list for a while. [looks like a while is about a year - ed.]

3 Responses to “Google’s latest service – App Hosting”

  1. jason says:

    It’s a language, which is fortunately not all that popular. I wonder if they’ve finally removed the Fortran-like requirement for indentation.

  2. JLG says:

    Is Python a language? a framework?

  3. Matthew says:

    The indentation is a fundamental part of the language, it isn’t going away.

    Many programmers bristle at Python, because while most general purpose languages like C, Java, Ruby, etc. are built on the principle that there should be many ways to do something in the language, Python believes that the ways should be limited preferably to one way. For instance, while in Java there are as many ways to itereate over a list as there are programmers, in Python there are fewer. I would say one, but it has been a while since I played with it. This philosophy extends even to code formatting, which is Jason’s beef. It does mean that it is easy to read once you get over your personal style issues ;) .

    It is used in many application and there are web frameworks and content management systems based on Python. To name a few:
    Bug trakers: bugzilla, trac
    Testing tool: Mercurial
    Web Application Server : Zope
    Web MVC Framework: Django (named after the guitar player I suppose)
    CMS: Plone
    Linux package manager: Yum
    Statistic package SPSS uses it as its command/macro language

    See More on Wikipedia

Leave a Reply