Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marshmallow-code/webargs
A friendly library for parsing HTTP request arguments, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, webapp2, Falcon, and aiohttp.
https://github.com/marshmallow-code/webargs
aiohttp bottlepy django falcon flask hacktoberfest marshmallow pyramid python request-validation validation
Last synced: 29 days ago
JSON representation
A friendly library for parsing HTTP request arguments, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, webapp2, Falcon, and aiohttp.
- Host: GitHub
- URL: https://github.com/marshmallow-code/webargs
- Owner: marshmallow-code
- License: mit
- Created: 2014-02-17T02:16:12.000Z (over 10 years ago)
- Default Branch: dev
- Last Pushed: 2024-04-01T21:35:26.000Z (7 months ago)
- Last Synced: 2024-04-14T00:58:08.793Z (7 months ago)
- Topics: aiohttp, bottlepy, django, falcon, flask, hacktoberfest, marshmallow, pyramid, python, request-validation, validation
- Language: Python
- Homepage: https://webargs.readthedocs.io/
- Size: 3.01 MB
- Stars: 1,364
- Watchers: 23
- Forks: 158
- Open Issues: 7
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- Authors: AUTHORS.rst
Awesome Lists containing this project
- jimsghstars - marshmallow-code/webargs - A friendly library for parsing HTTP request arguments, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, webapp2, Falcon, and aiohttp. (Python)
- best-of-web-python - GitHub - 3% open · ⏱️ 06.06.2024): (Others)
README
*******
webargs
*******|pypi| |build-status| |docs| |marshmallow3|
.. |pypi| image:: https://badgen.net/pypi/v/webargs
:target: https://pypi.org/project/webargs/
:alt: PyPI package.. |build-status| image:: https://github.com/marshmallow-code/webargs/actions/workflows/build-release.yml/badge.svg
:target: https://github.com/marshmallow-code/webargs/actions/workflows/build-release.yml
:alt: Build status.. |docs| image:: https://readthedocs.org/projects/webargs/badge/
:target: https://webargs.readthedocs.io/
:alt: Documentation.. |marshmallow3| image:: https://badgen.net/badge/marshmallow/3
:target: https://marshmallow.readthedocs.io/en/latest/upgrading.html
:alt: marshmallow 3 compatibleHomepage: https://webargs.readthedocs.io/
webargs is a Python library for parsing and validating HTTP request objects, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, Falcon, and aiohttp.
.. code-block:: python
from flask import Flask
from webargs import fields
from webargs.flaskparser import use_argsapp = Flask(__name__)
@app.route("/")
@use_args({"name": fields.Str(required=True)}, location="query")
def index(args):
return "Hello " + args["name"]if __name__ == "__main__":
app.run()# curl http://localhost:5000/\?name\='World'
# Hello WorldInstall
=======::
pip install -U webargs
webargs supports Python >= 3.8.
Documentation
=============Full documentation is available at https://webargs.readthedocs.io/.
Support webargs
===============webargs is maintained by a group of
`volunteers `_.
If you'd like to support the future of the project, please consider
contributing to our Open Collective:.. image:: https://opencollective.com/marshmallow/donate/button.png
:target: https://opencollective.com/marshmallow
:width: 200
:alt: Donate to our collectiveProfessional Support
====================Professionally-supported webargs is available through the
`Tidelift Subscription `_.Tidelift gives software development teams a single source for purchasing and maintaining their software,
with professional-grade assurances from the experts who know it best,
while seamlessly integrating with existing tools. [`Get professional support`_].. _`Get professional support`: https://tidelift.com/subscription/pkg/pypi-webargs?utm_source=pypi-webargs&utm_medium=referral&utm_campaign=readme
.. image:: https://user-images.githubusercontent.com/2379650/45126032-50b69880-b13f-11e8-9c2c-abd16c433495.png
:target: https://tidelift.com/subscription/pkg/pypi-webargs?utm_source=pypi-webargs&utm_medium=referral&utm_campaign=readme
:alt: Get supported marshmallow with TideliftSecurity Contact Information
============================To report a security vulnerability, please use the
`Tidelift security contact `_.
Tidelift will coordinate the fix and disclosure.Project Links
=============- Docs: https://webargs.readthedocs.io/
- Changelog: https://webargs.readthedocs.io/en/latest/changelog.html
- Contributing Guidelines: https://webargs.readthedocs.io/en/latest/contributing.html
- PyPI: https://pypi.python.org/pypi/webargs
- Issues: https://github.com/marshmallow-code/webargs/issues
- Ecosystem / related packages: https://github.com/marshmallow-code/webargs/wiki/EcosystemLicense
=======MIT licensed. See the `LICENSE `_ file for more details.