webapp2 is a lightweight Python web framework, designed specifically for Google App Engine's Python 2 standard environment. It extends the original `webapp` framework, providing enhanced routing, session management, and other utilities. The current version is 2.5.2, but the library is no longer actively maintained and does not support Python 3.
pip install webapp2Verified import paths — ran on the pinned version, not inferred.
This quickstart demonstrates a basic 'Hello, webapp2!' application using a single request handler and a WSGIApplication setup. This code would typically be run within a Google App Engine Python 2 standard environment.
For new projects or migration, consider modern Python 3 frameworks like Flask or Django, which are actively maintained and supported on Google App Engine's flexible or standard environment (Python 3).
It is strongly recommended to use actively maintained web frameworks for any new or critical applications to ensure security, stability, and ongoing support. Migrate existing webapp2 applications to supported frameworks.
If running locally for development, use the Google App Engine SDK's development server (`dev_appserver.py`). For deployment, ensure your `app.yaml` correctly points to your `webapp2.WSGIApplication` instance within the GAE Python 2 runtime.
No dependency data recorded yet.