|
5 | 5 | "type": "pypi", |
6 | 6 | "namespace": null, |
7 | 7 | "name": "click", |
8 | | - "version": "8.1.5", |
| 8 | + "version": "8.1.6", |
9 | 9 | "qualifiers": {}, |
10 | 10 | "subpath": null, |
11 | 11 | "primary_language": "Python", |
12 | 12 | "description": "Composable command line interface toolkit\n\\$ click\\_\n==========\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\nInstalling\n----------\n\nInstall and update using `pip`_:\n\n.. code-block:: text\n\n $ pip install -U click\n\n.. _pip: https://pip.pypa.io/en/stable/getting-started/\n\n\nA Simple Example\n----------------\n\n.. code-block:: python\n\n import 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.\")\n def 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\n if __name__ == '__main__':\n hello()\n\n.. code-block:: text\n\n $ python hello.py --count=3\n Your name: Click\n Hello, Click!\n Hello, Click!\n Hello, Click!\n\n\nDonate\n------\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\nLinks\n-----\n\n- Documentation: https://click.palletsprojects.com/\n- Changes: https://click.palletsprojects.com/changes/\n- PyPI Releases: https://pypi.org/project/click/\n- Source Code: https://github.com/pallets/click\n- Issue Tracker: https://github.com/pallets/click/issues\n- Chat: https://discord.gg/pallets", |
13 | | - "release_date": "2023-07-13T15:07:09", |
| 13 | + "release_date": "2023-07-18T20:05:12", |
14 | 14 | "parties": [ |
15 | 15 | { |
16 | 16 | "type": "person", |
|
27 | 27 | "Programming Language :: Python" |
28 | 28 | ], |
29 | 29 | "homepage_url": "https://palletsprojects.com/p/click/", |
30 | | - "download_url": "https://files.pythonhosted.org/packages/22/b3/1da4ea0efa2e5ae410a347be614162ca08bd24a84059938aa5122d1e751b/click-8.1.5-py3-none-any.whl", |
31 | | - "size": 98101, |
| 30 | + "download_url": "https://files.pythonhosted.org/packages/1a/70/e63223f8116931d365993d4a6b7ef653a4d920b41d03de7c59499962821f/click-8.1.6-py3-none-any.whl", |
| 31 | + "size": 97909, |
32 | 32 | "sha1": null, |
33 | | - "md5": "dc35b51c85d43170abe648acc63cdf8e", |
34 | | - "sha256": "e576aa487d679441d7d30abb87e1b43d24fc53bffb8758443b1a9e1cee504548", |
| 33 | + "md5": "043416d14751ae24c8e8b0968b6fff78", |
| 34 | + "sha256": "fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5", |
35 | 35 | "sha512": null, |
36 | 36 | "bug_tracking_url": "https://github.com/pallets/click/issues/", |
37 | 37 | "code_view_url": "https://github.com/pallets/click/", |
|
51 | 51 | "dependencies": [], |
52 | 52 | "repository_homepage_url": null, |
53 | 53 | "repository_download_url": null, |
54 | | - "api_data_url": "https://pypi.org/pypi/click/8.1.5/json", |
| 54 | + "api_data_url": "https://pypi.org/pypi/click/8.1.6/json", |
55 | 55 | "datasource_id": null, |
56 | | - "purl": "pkg:pypi/click@8.1.5" |
| 56 | + "purl": "pkg:pypi/click@8.1.6" |
57 | 57 | }, |
58 | 58 | { |
59 | 59 | "type": "pypi", |
60 | 60 | "namespace": null, |
61 | 61 | "name": "click", |
62 | | - "version": "8.1.5", |
| 62 | + "version": "8.1.6", |
63 | 63 | "qualifiers": {}, |
64 | 64 | "subpath": null, |
65 | 65 | "primary_language": "Python", |
66 | 66 | "description": "Composable command line interface toolkit\n\\$ click\\_\n==========\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\nInstalling\n----------\n\nInstall and update using `pip`_:\n\n.. code-block:: text\n\n $ pip install -U click\n\n.. _pip: https://pip.pypa.io/en/stable/getting-started/\n\n\nA Simple Example\n----------------\n\n.. code-block:: python\n\n import 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.\")\n def 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\n if __name__ == '__main__':\n hello()\n\n.. code-block:: text\n\n $ python hello.py --count=3\n Your name: Click\n Hello, Click!\n Hello, Click!\n Hello, Click!\n\n\nDonate\n------\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\nLinks\n-----\n\n- Documentation: https://click.palletsprojects.com/\n- Changes: https://click.palletsprojects.com/changes/\n- PyPI Releases: https://pypi.org/project/click/\n- Source Code: https://github.com/pallets/click\n- Issue Tracker: https://github.com/pallets/click/issues\n- Chat: https://discord.gg/pallets", |
67 | | - "release_date": "2023-07-13T15:07:11", |
| 67 | + "release_date": "2023-07-18T20:05:13", |
68 | 68 | "parties": [ |
69 | 69 | { |
70 | 70 | "type": "person", |
|
81 | 81 | "Programming Language :: Python" |
82 | 82 | ], |
83 | 83 | "homepage_url": "https://palletsprojects.com/p/click/", |
84 | | - "download_url": "https://files.pythonhosted.org/packages/7e/ad/7a6a96fab480fb2fbf52f782b2deb3abe1d2c81eca3ef68a575b5a6a4f2e/click-8.1.5.tar.gz", |
85 | | - "size": 336199, |
| 84 | + "download_url": "https://files.pythonhosted.org/packages/72/bd/fedc277e7351917b6c4e0ac751853a97af261278a4c7808babafa8ef2120/click-8.1.6.tar.gz", |
| 85 | + "size": 336051, |
86 | 86 | "sha1": null, |
87 | | - "md5": "7ca55ba4d82321d69594e3a1a4164132", |
88 | | - "sha256": "4be4b1af8d665c6d942909916d31a213a106800c47d0eeba73d34da3cbc11367", |
| 87 | + "md5": "0ad74cc10856930a76b0560ccc55c162", |
| 88 | + "sha256": "48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd", |
89 | 89 | "sha512": null, |
90 | 90 | "bug_tracking_url": "https://github.com/pallets/click/issues/", |
91 | 91 | "code_view_url": "https://github.com/pallets/click/", |
|
105 | 105 | "dependencies": [], |
106 | 106 | "repository_homepage_url": null, |
107 | 107 | "repository_download_url": null, |
108 | | - "api_data_url": "https://pypi.org/pypi/click/8.1.5/json", |
| 108 | + "api_data_url": "https://pypi.org/pypi/click/8.1.6/json", |
109 | 109 | "datasource_id": null, |
110 | | - "purl": "pkg:pypi/click@8.1.5" |
| 110 | + "purl": "pkg:pypi/click@8.1.6" |
111 | 111 | }, |
112 | 112 | { |
113 | 113 | "type": "pypi", |
|
730 | 730 | ], |
731 | 731 | "resolution": [ |
732 | 732 | { |
733 | | - "package": "pkg:pypi/click@8.1.5", |
| 733 | + "package": "pkg:pypi/click@8.1.6", |
734 | 734 | "dependencies": [] |
735 | 735 | }, |
736 | 736 | { |
737 | 737 | "package": "pkg:pypi/flask@2.1.2", |
738 | 738 | "dependencies": [ |
739 | | - "pkg:pypi/click@8.1.5", |
| 739 | + "pkg:pypi/click@8.1.6", |
740 | 740 | "pkg:pypi/itsdangerous@2.1.2", |
741 | 741 | "pkg:pypi/jinja2@3.1.2", |
742 | 742 | "pkg:pypi/werkzeug@2.3.6" |
|
0 commit comments