Google Groups Home
Help | Sign in
Google App Engine
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 31 - Collapse all   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
Tommi  
View profile
 More options Apr 8, 1:28 am
From: Tommi <tommi.rai...@kypara.net>
Date: Mon, 7 Apr 2008 22:28:12 -0700 (PDT)
Local: Tues, Apr 8 2008 1:28 am
Subject: Google App Engine
http://appengine.google.com/

Looks nifty. The released SDK also includes a mini web app framework
(called `webapp`) that is somewhat similar to web.py -- has e.g. get/
post handlers, although for the most part things are more directed
towards Google's own infrastructure.

One can host web.py apps there, also.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Swartz  
View profile
 More options Apr 8, 1:33 am
From: "Aaron Swartz" <m...@aaronsw.com>
Date: Mon, 7 Apr 2008 22:33:20 -0700
Local: Tues, Apr 8 2008 1:33 am
Subject: Re: [webpy] Google App Engine
I just got back from the introduction at Google HQ. I'm working on
getting a web.py app up now.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
BjornT  
View profile
 More options Apr 8, 1:44 am
From: BjornT <bjorn.tipl...@gmail.com>
Date: Mon, 7 Apr 2008 22:44:47 -0700 (PDT)
Local: Tues, Apr 8 2008 1:44 am
Subject: Re: Google App Engine
Man I wish I had known about this, I would have been there at Google.
I should pay more attention to my baypiggies mailing list.

On Apr 7, 10:33 pm, "Aaron Swartz" <m...@aaronsw.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Swartz  
View profile
 More options Apr 8, 1:55 am
From: "Aaron Swartz" <m...@aaronsw.com>
Date: Mon, 7 Apr 2008 22:55:25 -0700
Local: Tues, Apr 8 2008 1:55 am
Subject: Re: [webpy] Re: Google App Engine
OK, my first web.py app is up at:

http://webpy.appspot.com/

Click for the source code. (It's 0.3, but I expect 0.2 would work fine
the same way.)

Doesn't seem to be any trouble using web.py at all.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Curt Micol  
View profile
 More options Apr 8, 7:39 am
From: "Curt Micol" <asen...@gmail.com>
Date: Tue, 8 Apr 2008 07:39:43 -0400
Local: Tues, Apr 8 2008 7:39 am
Subject: Re: [webpy] Google App Engine

On Tue, Apr 8, 2008 at 1:28 AM, Tommi <tommi.rai...@kypara.net> wrote:

>  http://appengine.google.com/

>  Looks nifty. The released SDK also includes a mini web app framework
>  (called `webapp`) that is somewhat similar to web.py -- has e.g. get/
>  post handlers, although for the most part things are more directed
>  towards Google's own infrastructure.

>  One can host web.py apps there, also.

I have to say, I am pretty impressed with what I've read so far.  Now
I have to wait for an invite.

Thanks,
--
# Curt Micol


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
bubblboy  
View profile
 More options Apr 8, 8:25 am
From: bubblboy <bubbl...@gmail.com>
Date: Tue, 08 Apr 2008 14:25:42 +0200
Local: Tues, Apr 8 2008 8:25 am
Subject: Re: [webpy] Re: Google App Engine

Aaron Swartz wrote:
> OK, my first web.py app is up at:

> http://webpy.appspot.com/

> Click for the source code. (It's 0.3, but I expect 0.2 would work fine
> the same way.)

> Doesn't seem to be any trouble using web.py at all.

narf; LIMIT 10 for the last 5 notes?

but looks nice :) very simple. I like ^^


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
rkmr.em@gmail.com  
View profile
 More options Apr 8, 8:40 am
From: "rkmr...@gmail.com" <rkmr...@gmail.com>
Date: Tue, 8 Apr 2008 05:40:02 -0700
Local: Tues, Apr 8 2008 8:40 am
Subject: Re: [webpy] Re: Google App Engine
On Mon, Apr 7, 2008 at 10:55 PM, Aaron Swartz <m...@aaronsw.com> wrote:
>  OK, my first web.py app is up at:
>  http://webpy.appspot.com/

really cool!!

>  Click for the source code. (It's 0.3, but I expect 0.2 would work fine
>  the same way.)

how do you start /configure this app with web.py? is a config file needed ?

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
rkmr.em@gmail.com  
View profile
 More options Apr 8, 8:51 am
From: "rkmr...@gmail.com" <rkmr...@gmail.com>
Date: Tue, 8 Apr 2008 05:51:32 -0700
Local: Tues, Apr 8 2008 8:51 am
Subject: Re: [webpy] Re: Google App Engine
OK, I got it configured with app.yaml file

application: helloworld
version: 1
runtime: python
api_version: 1

handlers:
- url: /.*
  script: code.py

but when i try to run it says app has no cgirun attribute.. i am using
latest web.py dev 0.3 version. how to fix this?

Traceback (most recent call last):
  File "/tmp/google_appengine/google/appengine/tools/dev_appserver.py",
line 2245, in _HandleRequest
    base_env_dict=env_dict)
  File "/tmp/google_appengine/google/appengine/tools/dev_appserver.py",
line 334, in Dispatch
    base_env_dict=base_env_dict)
  File "/tmp/google_appengine/google/appengine/tools/dev_appserver.py",
line 1743, in Dispatch
    self._module_dict)
  File "/tmp/google_appengine/google/appengine/tools/dev_appserver.py",
line 1654, in ExecuteCGI
    reset_modules = exec_script(handler_path, cgi_path, hook)
  File "/tmp/google_appengine/google/appengine/tools/dev_appserver.py",
line 1555, in ExecuteOrImportScript
    exec module_code in script_module.__dict__
  File "/tmp/google_appengine/test/code.py", line 37, in <module>
    main = app.cgirun()
AttributeError: application instance has no attribute 'cgirun'


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Swartz  
View profile
 More options Apr 8, 11:47 am
From: "Aaron Swartz" <m...@aaronsw.com>
Date: Tue, 8 Apr 2008 08:47:20 -0700
Local: Tues, Apr 8 2008 11:47 am
Subject: Re: [webpy] Re: Google App Engine
Oops, I forgot to check in cgirun. Should be fixed now. Sorry.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
rkmr.em@gmail.com  
View profile
 More options Apr 8, 12:23 pm
From: "rkmr...@gmail.com" <rkmr...@gmail.com>
Date: Tue, 8 Apr 2008 09:23:32 -0700
Local: Tues, Apr 8 2008 12:23 pm
Subject: Re: [webpy] Re: Google App Engine
On Tue, Apr 8, 2008 at 8:47 AM, Aaron Swartz <m...@aaronsw.com> wrote:
>  Oops, I forgot to check in cgirun. Should be fixed now. Sorry.

can you make a release for web.py .23 also?
thanks

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Swartz  
View profile
 More options Apr 8, 12:34 pm
From: "Aaron Swartz" <m...@aaronsw.com>
Date: Tue, 8 Apr 2008 09:34:19 -0700
Local: Tues, Apr 8 2008 12:34 pm
Subject: Re: [webpy] Re: Google App Engine
For 0.23, just do:

    import google.appengine.ext.utils
    main = google.appengine.ext.utils.run_wsgi_app(web.wsgifunc(web.webpyfunc(urls,
globals()))


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
rkmr.em@gmail.com  
View profile
 More options Apr 8, 2:44 pm
From: "rkmr...@gmail.com" <rkmr...@gmail.com>
Date: Tue, 8 Apr 2008 11:44:14 -0700
Local: Tues, Apr 8 2008 2:44 pm
Subject: Re: [webpy] Re: Google App Engine
Can you also make available templates/index.html for completeness?
thanks


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
luismgz@gmail.com  
View profile
 More options Apr 8, 2:46 pm
From: "luis...@gmail.com" <luis...@gmail.com>
Date: Tue, 8 Apr 2008 11:46:04 -0700 (PDT)
Local: Tues, Apr 8 2008 2:46 pm
Subject: Re: Google App Engine
I am so excited!!
This is something BIG for python developers. Free google accounts for
python development. Am I dreaming??

By the way, "webapp" looks surprisingly similar to webpy.
I can't wait to get some spare time to get my hands on this...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Swartz  
View profile