Metadata-Version: 2.1
Name: Werkzeug-Raw
Version: 0.0.2
Summary: Werkzeug meets Raw HTTP
Home-page: http://pythonhosted.org/Werkzeug-Raw/
Author: Nathan Cahill
Author-email: nathan@nathancahill.com
License: MIT
Keywords: werkzeug flask http
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: werkzeug
Requires-Dist: six

Werkzeug-Raw
============

Werkzeug meets Raw HTTP

**Werkzeug-Raw** adds support to Werkzeug for accepting HTTP input from
raw text, from strings or files. Compatibility with Flask makes fuzzing or
testing complex HTTP requests in Flask applications very simple.

Additionally, it circumvents the need for a client/server/network setup,
and goes directly from raw HTTP to WSGI environment. A large number of requests
can be handled without needing to worry about secondary variables like network
latency clouding the water. This is not meant as a benchmarking tool for Werkzeug or Flask.

Installation
------------

To install Werkzeug Raw, simply::

    $ pip install werkzeug-raw


Documentation
-------------

Documentation is available at `<http://pythonhosted.org/Werkzeug-Raw>`_


Contribute
----------

Fork the repository, make changes and add a test which shows that the bug was
fixed or that the feature works as expected with 100% coverage. Send a pull request.

