{"id":13502359,"url":"https://github.com/marshmallow-code/webargs","last_synced_at":"2025-05-15T00:06:23.189Z","repository":{"id":14192968,"uuid":"16899445","full_name":"marshmallow-code/webargs","owner":"marshmallow-code","description":"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.","archived":false,"fork":false,"pushed_at":"2025-05-05T20:36:51.000Z","size":3246,"stargazers_count":1392,"open_issues_count":6,"forks_count":158,"subscribers_count":20,"default_branch":"dev","last_synced_at":"2025-05-15T00:02:24.234Z","etag":null,"topics":["aiohttp","bottlepy","django","falcon","flask","hacktoberfest","marshmallow","pyramid","python","request-validation","validation"],"latest_commit_sha":null,"homepage":"https://webargs.readthedocs.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marshmallow-code.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":"CONTRIBUTING.rst","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"open_collective":"marshmallow","tidelift":"pypi/webargs"}},"created_at":"2014-02-17T02:16:12.000Z","updated_at":"2025-05-14T07:34:30.000Z","dependencies_parsed_at":"2023-01-16T20:01:03.426Z","dependency_job_id":"bbd5296d-f896-49c1-b19a-dcd3188ca2d9","html_url":"https://github.com/marshmallow-code/webargs","commit_stats":{"total_commits":1384,"total_committers":74,"mean_commits":18.7027027027027,"dds":0.5484104046242775,"last_synced_commit":"1be0cf4a569ed2fde46b185af872b5d773b4e7d5"},"previous_names":["sloria/webargs"],"tags_count":112,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marshmallow-code%2Fwebargs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marshmallow-code%2Fwebargs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marshmallow-code%2Fwebargs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marshmallow-code%2Fwebargs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marshmallow-code","download_url":"https://codeload.github.com/marshmallow-code/webargs/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254249198,"owners_count":22039029,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aiohttp","bottlepy","django","falcon","flask","hacktoberfest","marshmallow","pyramid","python","request-validation","validation"],"created_at":"2024-07-31T22:02:11.466Z","updated_at":"2025-05-15T00:06:23.140Z","avatar_url":"https://github.com/marshmallow-code.png","language":"Python","readme":"*******\nwebargs\n*******\n\n|pypi| |build-status| |docs| |marshmallow-support|\n\n.. |pypi| image:: https://badgen.net/pypi/v/webargs\n    :target: https://pypi.org/project/webargs/\n    :alt: PyPI package\n\n.. |build-status| image:: https://github.com/marshmallow-code/webargs/actions/workflows/build-release.yml/badge.svg\n    :target: https://github.com/marshmallow-code/webargs/actions/workflows/build-release.yml\n    :alt: Build status\n\n.. |docs| image:: https://readthedocs.org/projects/webargs/badge/\n   :target: https://webargs.readthedocs.io/\n   :alt: Documentation\n\n.. |marshmallow-support| image:: https://badgen.net/badge/marshmallow/3,4?list=1\n    :target: https://marshmallow.readthedocs.io/en/latest/upgrading.html\n    :alt: marshmallow 3|4 compatible\n\nHomepage: https://webargs.readthedocs.io/\n\nwebargs 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.\n\n.. code-block:: python\n\n    from flask import Flask\n    from webargs import fields\n    from webargs.flaskparser import use_args\n\n    app = Flask(__name__)\n\n\n    @app.route(\"/\")\n    @use_args({\"name\": fields.Str(required=True)}, location=\"query\")\n    def index(args):\n        return \"Hello \" + args[\"name\"]\n\n\n    if __name__ == \"__main__\":\n        app.run()\n\n    # curl http://localhost:5000/\\?name\\='World'\n    # Hello World\n\nInstall\n=======\n\n::\n\n    pip install -U webargs\n\nDocumentation\n=============\n\nFull documentation is available at https://webargs.readthedocs.io/.\n\nSupport webargs\n===============\n\nwebargs is maintained by a group of \n`volunteers \u003chttps://webargs.readthedocs.io/en/latest/authors.html\u003e`_.\nIf you'd like to support the future of the project, please consider\ncontributing to our Open Collective:\n\n.. image:: https://opencollective.com/marshmallow/donate/button.png\n    :target: https://opencollective.com/marshmallow\n    :width: 200\n    :alt: Donate to our collective\n\nProfessional Support\n====================\n\nProfessionally-supported webargs is available through the\n`Tidelift Subscription \u003chttps://tidelift.com/subscription/pkg/pypi-webargs?utm_source=pypi-webargs\u0026utm_medium=referral\u0026utm_campaign=readme\u003e`_.\n\nTidelift gives software development teams a single source for purchasing and maintaining their software,\nwith professional-grade assurances from the experts who know it best,\nwhile seamlessly integrating with existing tools. [`Get professional support`_]\n\n.. _`Get professional support`: https://tidelift.com/subscription/pkg/pypi-webargs?utm_source=pypi-webargs\u0026utm_medium=referral\u0026utm_campaign=readme\n\n.. image:: https://user-images.githubusercontent.com/2379650/45126032-50b69880-b13f-11e8-9c2c-abd16c433495.png\n    :target: https://tidelift.com/subscription/pkg/pypi-webargs?utm_source=pypi-webargs\u0026utm_medium=referral\u0026utm_campaign=readme\n    :alt: Get supported marshmallow with Tidelift\n\nSecurity Contact Information\n============================\n\nTo report a security vulnerability, please use the\n`Tidelift security contact \u003chttps://tidelift.com/security\u003e`_.\nTidelift will coordinate the fix and disclosure.\n\nProject Links\n=============\n\n- Docs: https://webargs.readthedocs.io/\n- Changelog: https://webargs.readthedocs.io/en/latest/changelog.html\n- Contributing Guidelines: https://webargs.readthedocs.io/en/latest/contributing.html\n- PyPI: https://pypi.python.org/pypi/webargs\n- Issues: https://github.com/marshmallow-code/webargs/issues\n- Ecosystem / related packages: https://github.com/marshmallow-code/webargs/wiki/Ecosystem\n\n\nLicense\n=======\n\nMIT licensed. See the `LICENSE \u003chttps://github.com/marshmallow-code/webargs/blob/dev/LICENSE\u003e`_ file for more details.\n","funding_links":["https://opencollective.com/marshmallow","https://tidelift.com/funding/github/pypi/webargs","https://tidelift.com/subscription/pkg/pypi-webargs?utm_source=pypi-webargs\u0026utm_medium=referral\u0026utm_campaign=readme","https://tidelift.com/security"],"categories":["URL Manipulation","Python","URL操作","URL 处理","Others","URL Manipulation [🔝](#readme)","Awesome Python"],"sub_categories":["URL Manipulation"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarshmallow-code%2Fwebargs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarshmallow-code%2Fwebargs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarshmallow-code%2Fwebargs/lists"}