loongson/pypi/: werkzeug-2.0.2 metadata and description

Homepage Simple index

The comprehensive WSGI web application library.

author Armin Ronacher
author_email armin.ronacher@active-4.com
classifiers
  • Development Status :: 5 - Production/Stable
  • Environment :: Web Environment
  • Intended Audience :: Developers
  • License :: OSI Approved :: BSD License
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Topic :: Internet :: WWW/HTTP :: Dynamic Content
  • Topic :: Internet :: WWW/HTTP :: WSGI
  • Topic :: Internet :: WWW/HTTP :: WSGI :: Application
  • Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
  • Topic :: Software Development :: Libraries :: Application Frameworks
description_content_type text/x-rst
license BSD-3-Clause
maintainer Pallets
maintainer_email contact@palletsprojects.com
project_urls
  • Donate, https://palletsprojects.com/donate
  • Documentation, https://werkzeug.palletsprojects.com/
  • Changes, https://werkzeug.palletsprojects.com/changes/
  • Source Code, https://github.com/pallets/werkzeug/
  • Issue Tracker, https://github.com/pallets/werkzeug/issues/
  • Twitter, https://twitter.com/PalletsTeam
  • Chat, https://discord.gg/pallets
provides_extras watchdog
requires_dist
  • dataclasses ; python_version < "3.7"
  • watchdog ; extra == 'watchdog'
requires_python >=3.6

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
Werkzeug-2.0.2-py3-none-any.whl
Size
282 KB
Type
Python Wheel
Python
3

werkzeug German noun: “tool”. Etymology: werk (“work”), zeug (“stuff”)

Werkzeug is a comprehensive WSGI web application library. It began as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility libraries.

It includes:

Werkzeug doesn’t enforce any dependencies. It is up to the developer to choose a template engine, database adapter, and even how to handle requests. It can be used to build all sorts of end user applications such as blogs, wikis, or bulletin boards.

Flask wraps Werkzeug, using it to handle the details of WSGI while providing more structure and patterns for defining powerful applications.

Installing

Install and update using pip:

pip install -U Werkzeug

A Simple Example

from werkzeug.wrappers import Request, Response

@Request.application
def application(request):
    return Response('Hello, World!')

if __name__ == '__main__':
    from werkzeug.serving import run_simple
    run_simple('localhost', 4000, application)