summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2019-02-12 13:02:48 -0800
committerDavid Lord <davidism@gmail.com>2019-02-12 13:02:48 -0800
commitc9cc2d01d5bd05805b0f3d68d3c11ffd971b5389 (patch)
treef451c273eb2e6ad6da05d22981f3984f261d9116 /README.rst
parent54c8e6b975c478fc1aac3dfceb49e65c1299cad8 (diff)
downloadwerkzeug-c9cc2d01d5bd05805b0f3d68d3c11ffd971b5389.tar.gz
update metadata, set python_requires
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst50
1 files changed, 25 insertions, 25 deletions
diff --git a/README.rst b/README.rst
index 4e7d448f..5de79b65 100644
--- a/README.rst
+++ b/README.rst
@@ -3,28 +3,28 @@ Werkzeug
*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:
-* An interactive debugger that allows inspecting stack traces and source
- code in the browser with an interactive interpreter for any frame in
- the stack.
-* A full-featured request object with objects to interact with headers,
- query args, form data, files, and cookies.
-* A response object that can wrap other WSGI applications and handle
- streaming data.
-* A routing system for matching URLs to endpoints and generating URLs
- for endpoints, with an extensible system for capturing variables from
- URLs.
-* HTTP utilities to handle entity tags, cache control, dates, user
- agents, cookies, files, and more.
-* A threaded WSGI server for use while developing applications locally.
-* A test client for simulating HTTP requests during testing without
- requiring running a server.
+- An interactive debugger that allows inspecting stack traces and
+ source code in the browser with an interactive interpreter for any
+ frame in the stack.
+- A full-featured request object with objects to interact with
+ headers, query args, form data, files, and cookies.
+- A response object that can wrap other WSGI applications and handle
+ streaming data.
+- A routing system for matching URLs to endpoints and generating URLs
+ for endpoints, with an extensible system for capturing variables
+ from URLs.
+- HTTP utilities to handle entity tags, cache control, dates, user
+ agents, cookies, files, and more.
+- A threaded WSGI server for use while developing applications
+ locally.
+- A test client for simulating HTTP requests during testing without
+ requiring running a server.
Werkzeug is Unicode aware and doesn't enforce any dependencies. It is up
to the developer to choose a template engine, database adapter, and even
@@ -65,17 +65,17 @@ A Simple Example
Links
-----
-* Website: https://www.palletsprojects.com/p/werkzeug/
-* Documentation: http://werkzeug.pocoo.org/docs/
-* Releases: https://pypi.org/project/Werkzeug/
-* Code: https://github.com/pallets/werkzeug
-* Issue tracker: https://github.com/pallets/werkzeug/issues
-* Test status:
+- Website: https://www.palletsprojects.com/p/werkzeug/
+- Documentation: http://werkzeug.pocoo.org/docs/
+- Releases: https://pypi.org/project/Werkzeug/
+- Code: https://github.com/pallets/werkzeug
+- Issue tracker: https://github.com/pallets/werkzeug/issues
+- Test status:
- * Linux, Mac: https://travis-ci.org/pallets/werkzeug
- * Windows: https://ci.appveyor.com/project/pallets/werkzeug
+ - Linux, Mac: https://travis-ci.org/pallets/werkzeug
+ - Windows: https://ci.appveyor.com/project/pallets/werkzeug
-* Test coverage: https://codecov.io/gh/pallets/werkzeug
+- Test coverage: https://codecov.io/gh/pallets/werkzeug
.. _WSGI: https://wsgi.readthedocs.io/en/latest/
.. _Flask: https://www.palletsprojects.com/p/flask/