A friendly library for parsing HTTP request arguments, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, and webapp2.
Project description
Homepage: https://webargs.readthedocs.org/
webargs is a Python library for parsing HTTP request arguments, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, and webapp2.
from flask import Flask
from webargs import Arg
from webargs.flaskparser import use_args
app = Flask(__name__)
hello_args = {
'name': Arg(str, required=True)
}
@app.route('/')
@use_args(hello_args)
def index(args):
return 'Hello ' + args['name']
if __name__ == '__main__':
app.run()
# curl http://localhost:5000/\?name\='World'
# Hello World
Install
pip install -U webargs
webargs supports Python >= 2.6 or >= 3.3.
Documentation
Full documentation is available at https://webargs.readthedocs.org/.
Project Links
License
MIT licensed. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
webargs-0.14.0.tar.gz
(17.7 kB
view hashes)
Built Distribution
Close
Hashes for webargs-0.14.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a733e37b829c31b34a60b3006813e18495b5d45b55cb2f39ca4819f1ff5f6f1 |
|
MD5 | 4a550cb1d430cdf38c9e3b1f4b593e37 |
|
BLAKE2b-256 | 51c8db1189a18f54dcb6748b3c4e04c4243c5391fa9d51b201cb28d8c4d22c24 |