>
> Figured it out!
>
App using Python (Old way)
import webapp
import logging
_URLS = [(r'/path/(.*)/(.*)', handlers.Handler)]
application = webapp.WSGIApplication(_URLS, debug=True)
util.run_wsgi_app(application)
if __name__ == '__main__':
main()
App using Python2.7
import webapp2
import logging
_URLS = [webapp2.Route(r'/path/(.*)/(.*)', handlers.Handler)]
application = webapp2.WSGIApplication(_URLS, debug=True)
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-appengine/-/oKmiY8CVvl8J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.