webapp2
Taking Google App Engine's webapp to the next level!
What it is and what it does
webapp2 is a minimal web framework built as an improved version of Google App Engine's original webapp module. It provides core web request handling with URI routing, exception handling, and response objects, designed to work both within App Engine and as a standalone Python web framework. The package has no runtime dependencies and aims for simplicity in application structure.
The framework was last updated in 2012-09-28 and is now abandoned, with no active maintenance or repository activity. While it remains available on PyPI and receives modest downloads, it predates modern Python web standards and practices. It should be considered a legacy framework suitable only for maintaining existing applications or learning historical web framework design, not for new projects.
Use it for:
- Maintaining or extending existing Google App Engine applications originally built with webapp2.
- Learning how early Python web frameworks structured routing and request handling before modern frameworks emerged.
- Running legacy code that depends on webapp2 in environments where dependency updates are not feasible.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A lightweight Python web framework designed for Google App Engine that provides URI routing, exception handling, and request/response management without external dependencies.
No. webapp2 is abandoned (last release 2012-09-28) with no maintenance signals and outdated design patterns. Install only if maintaining an existing application that already depends on it. For new projects, use a maintained web framework.
Install
webapp2 on PyPI
pip
pip install webapp2uv
uv add webapp2poetry
poetry add webapp2Installing webapp2
Before you install
High install friction with no runtime dependencies. Package is abandoned—last release was 2012-09-28 with no active maintenance or repository signals available.
License in practice
Licensed under Apache Software License (permissive), meaning you can use, modify, and distribute the package freely as long as you include a copy of the license and notice of changes.
Quickstart
pip install webapp2
import webapp2
class HelloWorld(webapp2.RequestHandler):
def get(self):
self.response.write('Hello World')
app = webapp2.WSGIApplication([('/', HelloWorld)])
No minimum Python version specified in package metadata; compatibility with modern Python versions is uncertain given the abandonment and age of the package.
Verify before relying
- Whether webapp2 runs on Python 3 or only Python 2, given the 2012 release date and no specified Python version requirement.
- Current state of Google App Engine compatibility and whether the framework still works with modern App Engine runtimes.
- Whether the optional webapp2_extras package is included or must be installed separately.
Package facts
| License | Apache Software License (permissive) |
| Python support | not specified |
| Install friction | high — source build required |
| Runtime dependencies | none |
| Maintenance | abandoned — 5,068 days since the last release |
| First released | |
| Downloads | 221,492/month — #9,275 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: webapp2-2.5.2.tar.gz; webapp2-2.5.2.zip
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
web-pyweb.py is a lightweight Python web framework…
permissive · top 15,000 on PyPI
bottleBottle is a lightweight WSGI microframework for…
permissive · top 5,000 on PyPI
pecanPecan is a WSGI web framework that routes HTTP…
permissive · top 15,000 on PyPI
appierAppier is a lightweight Python web framework…
permissive · top 5,000 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
FlaskFlask is a lightweight WSGI web application…
permissive · top 1,000 on PyPI
django-hostsRoutes HTTP requests to different Django URL…
permissive · top 15,000 on PyPI
pyramidPyramid is a Python web framework for building…
permissive · top 5,000 on PyPI
flask-appbuilderFlask App Builder is a framework that generates…
permissive · top 5,000 on PyPI
aiohttp-fast-url-dispatcherReplaces aiohttp's default URL dispatcher with…
permissive · top 15,000 on PyPI