This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class RenderMovieShowTimes(webapp.RequestHandler): | |
| def get(self, cityid, movieid): | |
| # cityid and movieid will contain the passed variables | |
| # do something with them | |
| application = webapp.WSGIApplication([ '/([^/]+)/([^/]+)' ]) | |
| def main(): | |
| run_wsgi_app(application) |
NewerOlder