Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created June 4, 2010 06:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewlesueur/425058 to your computer and use it in GitHub Desktop.
Save drewlesueur/425058 to your computer and use it in GitHub Desktop.
gae-gist demo
from google.appengine.api import urlfetch
import simplejson as json
self.response.out.write('hello world')
result = urlfetch.fetch("http://www.wikipedia.com")
if result.status_code == 200:
self.response.out.write(result.content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment