|
5 | 5 | "type": "pypi", |
6 | 6 | "namespace": null, |
7 | 7 | "name": "click", |
8 | | - "version": "8.3.0", |
| 8 | + "version": "8.3.1", |
9 | 9 | "qualifiers": {}, |
10 | 10 | "subpath": null, |
11 | 11 | "primary_language": "Python", |
12 | 12 | "description": "Composable command line interface toolkit\n<div align=\"center\"><img src=\"https://raw.githubusercontent.com/pallets/click/refs/heads/stable/docs/_static/click-name.svg\" alt=\"\" height=\"150\"></div>\n\n# Click\n\nClick is a Python package for creating beautiful command line interfaces\nin a composable way with as little code as necessary. It's the \"Command\nLine Interface Creation Kit\". It's highly configurable but comes with\nsensible defaults out of the box.\n\nIt aims to make the process of writing command line tools quick and fun\nwhile also preventing any frustration caused by the inability to\nimplement an intended CLI API.\n\nClick in three points:\n\n- Arbitrary nesting of commands\n- Automatic help page generation\n- Supports lazy loading of subcommands at runtime\n\n\n## A Simple Example\n\n```python\nimport click\n\n@click.command()\n@click.option(\"--count\", default=1, help=\"Number of greetings.\")\n@click.option(\"--name\", prompt=\"Your name\", help=\"The person to greet.\")\ndef hello(count, name):\n \"\"\"Simple program that greets NAME for a total of COUNT times.\"\"\"\n for _ in range(count):\n click.echo(f\"Hello, {name}!\")\n\nif __name__ == '__main__':\n hello()\n```\n\n```\n$ python hello.py --count=3\nYour name: Click\nHello, Click!\nHello, Click!\nHello, Click!\n```\n\n\n## Donate\n\nThe Pallets organization develops and supports Click and other popular\npackages. In order to grow the community of contributors and users, and\nallow the maintainers to devote more time to the projects, [please\ndonate today][].\n\n[please donate today]: https://palletsprojects.com/donate\n\n## Contributing\n\nSee our [detailed contributing documentation][contrib] for many ways to\ncontribute, including reporting issues, requesting features, asking or answering\nquestions, and making PRs.\n\n[contrib]: https://palletsprojects.com/contributing/", |
13 | | - "release_date": "2025-09-18T17:32:22", |
| 13 | + "release_date": "2025-11-15T20:45:41", |
14 | 14 | "parties": [ |
15 | 15 | { |
16 | 16 | "type": "person", |
|
28 | 28 | "Typing :: Typed" |
29 | 29 | ], |
30 | 30 | "homepage_url": null, |
31 | | - "download_url": "https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl", |
32 | | - "size": 107295, |
| 31 | + "download_url": "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", |
| 32 | + "size": 108274, |
33 | 33 | "sha1": null, |
34 | | - "md5": "dd99757a403a5728bb37a5cab4d46c83", |
35 | | - "sha256": "9b9f285302c6e3064f4330c05f05b81945b2a39544279343e6e7c5f27a9baddc", |
| 34 | + "md5": "f032502934a5979330da77e3f09d889c", |
| 35 | + "sha256": "981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", |
36 | 36 | "sha512": null, |
37 | 37 | "bug_tracking_url": null, |
38 | 38 | "code_view_url": "https://github.com/pallets/click/", |
|
47 | 47 | "dependencies": [], |
48 | 48 | "repository_homepage_url": null, |
49 | 49 | "repository_download_url": null, |
50 | | - "api_data_url": "https://pypi.org/pypi/click/8.3.0/json", |
| 50 | + "api_data_url": "https://pypi.org/pypi/click/8.3.1/json", |
51 | 51 | "datasource_id": null, |
52 | | - "purl": "pkg:pypi/click@8.3.0" |
| 52 | + "purl": "pkg:pypi/click@8.3.1" |
53 | 53 | }, |
54 | 54 | { |
55 | 55 | "type": "pypi", |
|
286 | 286 | "type": "pypi", |
287 | 287 | "namespace": null, |
288 | 288 | "name": "werkzeug", |
289 | | - "version": "3.1.3", |
| 289 | + "version": "3.1.5", |
290 | 290 | "qualifiers": {}, |
291 | 291 | "subpath": null, |
292 | 292 | "primary_language": "Python", |
293 | | - "description": "The comprehensive WSGI web application library.\n# Werkzeug\n\n*werkzeug* German noun: \"tool\". Etymology: *werk* (\"work\"), *zeug* (\"stuff\")\n\nWerkzeug is a comprehensive [WSGI][] web application library. It began as\na simple collection of various utilities for WSGI applications and has\nbecome one of the most advanced WSGI utility libraries.\n\nIt includes:\n\n- An interactive debugger that allows inspecting stack traces and\n source code in the browser with an interactive interpreter for any\n frame in the stack.\n- A full-featured request object with objects to interact with\n headers, query args, form data, files, and cookies.\n- A response object that can wrap other WSGI applications and handle\n streaming data.\n- A routing system for matching URLs to endpoints and generating URLs\n for endpoints, with an extensible system for capturing variables\n from URLs.\n- HTTP utilities to handle entity tags, cache control, dates, user\n agents, cookies, files, and more.\n- A threaded WSGI server for use while developing applications\n locally.\n- A test client for simulating HTTP requests during testing without\n requiring running a server.\n\nWerkzeug doesn't enforce any dependencies. It is up to the developer to\nchoose a template engine, database adapter, and even how to handle\nrequests. It can be used to build all sorts of end user applications\nsuch as blogs, wikis, or bulletin boards.\n\n[Flask][] wraps Werkzeug, using it to handle the details of WSGI while\nproviding more structure and patterns for defining powerful\napplications.\n\n[WSGI]: https://wsgi.readthedocs.io/en/latest/\n[Flask]: https://www.palletsprojects.com/p/flask/\n\n\n## A Simple Example\n\n```python\n# save this as app.py\nfrom werkzeug.wrappers import Request, Response\n\n@Request.application\ndef application(request: Request) -> Response:\n return Response(\"Hello, World!\")\n\nif __name__ == \"__main__\":\n from werkzeug.serving import run_simple\n run_simple(\"127.0.0.1\", 5000, application)\n```\n\n```\n$ python -m app\n * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)\n```\n\n\n## Donate\n\nThe Pallets organization develops and supports Werkzeug and other\npopular packages. In order to grow the community of contributors and\nusers, and allow the maintainers to devote more time to the projects,\n[please donate today][].\n\n[please donate today]: https://palletsprojects.com/donate", |
294 | | - "release_date": "2024-11-08T15:52:16", |
| 293 | + "description": "The comprehensive WSGI web application library.\n<div align=\"center\"><img src=\"https://raw.githubusercontent.com/pallets/werkzeug/refs/heads/stable/docs/_static/werkzeug-name.svg\" alt=\"\" height=\"150\"></div>\n\n# Werkzeug\n\n*werkzeug* German noun: \"tool\". Etymology: *werk* (\"work\"), *zeug* (\"stuff\")\n\nWerkzeug is a comprehensive [WSGI][] web application library. It began as\na simple collection of various utilities for WSGI applications and has\nbecome one of the most advanced WSGI utility libraries.\n\nIt includes:\n\n- An interactive debugger that allows inspecting stack traces and\n source code in the browser with an interactive interpreter for any\n frame in the stack.\n- A full-featured request object with objects to interact with\n headers, query args, form data, files, and cookies.\n- A response object that can wrap other WSGI applications and handle\n streaming data.\n- A routing system for matching URLs to endpoints and generating URLs\n for endpoints, with an extensible system for capturing variables\n from URLs.\n- HTTP utilities to handle entity tags, cache control, dates, user\n agents, cookies, files, and more.\n- A threaded WSGI server for use while developing applications\n locally.\n- A test client for simulating HTTP requests during testing without\n requiring running a server.\n\nWerkzeug doesn't enforce any dependencies. It is up to the developer to\nchoose a template engine, database adapter, and even how to handle\nrequests. It can be used to build all sorts of end user applications\nsuch as blogs, wikis, or bulletin boards.\n\n[Flask][] wraps Werkzeug, using it to handle the details of WSGI while\nproviding more structure and patterns for defining powerful\napplications.\n\n[WSGI]: https://wsgi.readthedocs.io/en/latest/\n[Flask]: https://www.palletsprojects.com/p/flask/\n\n\n## A Simple Example\n\n```python\n# save this as app.py\nfrom werkzeug.wrappers import Request, Response\n\n@Request.application\ndef application(request: Request) -> Response:\n return Response(\"Hello, World!\")\n\nif __name__ == \"__main__\":\n from werkzeug.serving import run_simple\n run_simple(\"127.0.0.1\", 5000, application)\n```\n\n```\n$ python -m app\n * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)\n```\n\n\n## Donate\n\nThe Pallets organization develops and supports Werkzeug and other\npopular packages. In order to grow the community of contributors and\nusers, and allow the maintainers to devote more time to the projects,\n[please donate today][].\n\n[please donate today]: https://palletsprojects.com/donate\n\n## Contributing\n\nSee our [detailed contributing documentation][contrib] for many ways to\ncontribute, including reporting issues, requesting features, asking or answering\nquestions, and making PRs.\n\n[contrib]: https://palletsprojects.com/contributing/", |
| 294 | + "release_date": "2026-01-08T17:49:21", |
295 | 295 | "parties": [ |
296 | 296 | { |
297 | 297 | "type": "person", |
|
315 | 315 | "Typing :: Typed" |
316 | 316 | ], |
317 | 317 | "homepage_url": null, |
318 | | - "download_url": "https://files.pythonhosted.org/packages/52/24/ab44c871b0f07f491e5d2ad12c9bd7358e527510618cb1b803a88e986db1/werkzeug-3.1.3-py3-none-any.whl", |
319 | | - "size": 224498, |
| 318 | + "download_url": "https://files.pythonhosted.org/packages/ad/e4/8d97cca767bcc1be76d16fb76951608305561c6e056811587f36cb1316a8/werkzeug-3.1.5-py3-none-any.whl", |
| 319 | + "size": 225025, |
320 | 320 | "sha1": null, |
321 | | - "md5": "ff3a2b0d0953eadee90c945d879c5aac", |
322 | | - "sha256": "54b78bf3716d19a65be4fceccc0d1d7b89e608834989dfae50ea87564639213e", |
| 321 | + "md5": "a2fc422165b70fcc148c99b85df6176c", |
| 322 | + "sha256": "5111e36e91086ece91f93268bb39b4a35c1e6f1feac762c9c822ded0a4e322dc", |
323 | 323 | "sha512": null, |
324 | | - "bug_tracking_url": "https://github.com/pallets/werkzeug/issues/", |
| 324 | + "bug_tracking_url": null, |
325 | 325 | "code_view_url": "https://github.com/pallets/werkzeug/", |
326 | 326 | "vcs_url": null, |
327 | 327 | "copyright": null, |
328 | | - "license_expression": null, |
329 | | - "declared_license": { |
330 | | - "classifiers": [ |
331 | | - "License :: OSI Approved :: BSD License" |
332 | | - ] |
333 | | - }, |
| 328 | + "license_expression": "BSD-3-Clause", |
| 329 | + "declared_license": {}, |
334 | 330 | "notice_text": null, |
335 | 331 | "source_packages": [], |
336 | 332 | "file_references": [], |
337 | 333 | "extra_data": {}, |
338 | 334 | "dependencies": [], |
339 | 335 | "repository_homepage_url": null, |
340 | 336 | "repository_download_url": null, |
341 | | - "api_data_url": "https://pypi.org/pypi/werkzeug/3.1.3/json", |
| 337 | + "api_data_url": "https://pypi.org/pypi/werkzeug/3.1.5/json", |
342 | 338 | "datasource_id": null, |
343 | | - "purl": "pkg:pypi/werkzeug@3.1.3" |
| 339 | + "purl": "pkg:pypi/werkzeug@3.1.5" |
344 | 340 | } |
345 | 341 | ], |
346 | 342 | "resolution": [ |
347 | 343 | { |
348 | | - "package": "pkg:pypi/click@8.3.0", |
| 344 | + "package": "pkg:pypi/click@8.3.1", |
349 | 345 | "dependencies": [] |
350 | 346 | }, |
351 | 347 | { |
352 | 348 | "package": "pkg:pypi/flask@2.1.2", |
353 | 349 | "dependencies": [ |
354 | | - "pkg:pypi/click@8.3.0", |
| 350 | + "pkg:pypi/click@8.3.1", |
355 | 351 | "pkg:pypi/itsdangerous@2.2.0", |
356 | 352 | "pkg:pypi/jinja2@3.1.6", |
357 | | - "pkg:pypi/werkzeug@3.1.3" |
| 353 | + "pkg:pypi/werkzeug@3.1.5" |
358 | 354 | ] |
359 | 355 | }, |
360 | 356 | { |
|
372 | 368 | "dependencies": [] |
373 | 369 | }, |
374 | 370 | { |
375 | | - "package": "pkg:pypi/werkzeug@3.1.3", |
| 371 | + "package": "pkg:pypi/werkzeug@3.1.5", |
376 | 372 | "dependencies": [ |
377 | 373 | "pkg:pypi/markupsafe@3.0.3" |
378 | 374 | ] |
|
0 commit comments