{ "info": { "author": "Armin Ronacher", "author_email": "armin.ronacher@active-4.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "\\$ click\\_\n==========\n\n** NOTE ** This is an un-official preview version of click v8.0.\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 click\n\nClick supports Python 3.4 and newer, Python 2.7, and PyPy.\n\n.. _pip: https://pip.pypa.io/en/stable/quickstart/\n\n\nA Simple Example\n----------------\n\nWhat does it look like? Here is an example of a simple Click program:\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\",\n 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(\"Hello, %s!\" % name)\n\n if __name__ == '__main__':\n hello()\n\nAnd what it looks like when run:\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* Website: https://palletsprojects.com/p/click/\n* Documentation: https://click.palletsprojects.com/\n* License: `BSD `_\n* Releases: https://pypi.org/project/click/\n* Code: https://github.com/pallets/click\n* Issue tracker: https://github.com/pallets/click/issues\n* Test status: https://dev.azure.com/pallets/click/_build\n* Official chat: https://discord.gg/t6rrQZH", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://palletsprojects.com/p/click/", "keywords": "", "license": "BSD-3-Clause", "maintainer": "Pallets", "maintainer_email": "contact@palletsprojects.com", "name": "click8", "package_url": "https://pypi.org/project/click8/", "platform": "", "project_url": "https://pypi.org/project/click8/", "project_urls": { "Code": "https://github.com/pallets/click", "Documentation": "https://click.palletsprojects.com/", "Homepage": "https://palletsprojects.com/p/click/", "Issue tracker": "https://github.com/pallets/click/issues" }, "release_url": "https://pypi.org/project/click8/8.0.1/", "requires_dist": null, "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "summary": "Composable command line interface toolkit", "version": "8.0.1" }, "last_serial": 5723994, "releases": { "8.0.1": [ { "comment_text": "", "digests": { "md5": "d1833879b653a3c5836c996ba62ca18d", "sha256": "3412342408c03fbfd3b1826c8fd0fb2caace9b15a9d1c9375555122855449c86" }, "downloads": -1, "filename": "click8-8.0.1.tar.gz", "has_sig": false, "md5_digest": "d1833879b653a3c5836c996ba62ca18d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 293033, "upload_time": "2019-08-24T08:42:26", "url": "https://files.pythonhosted.org/packages/4e/b4/a2279d9d0183784e9dd9fd62b7505adab0819662d4b169602a6fef6a5a72/click8-8.0.1.tar.gz" } ], "8.0.dev0": [ { "comment_text": "", "digests": { "md5": "5237a3dc5d4a614e872a16f6706e3116", "sha256": "da10af5ae01cdda162b80e130a452c69d7e33b73ec77c811e268fc752c697625" }, "downloads": -1, "filename": "click8-8.0.dev0.tar.gz", "has_sig": false, "md5_digest": "5237a3dc5d4a614e872a16f6706e3116", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 293040, "upload_time": "2019-08-24T08:34:52", "url": "https://files.pythonhosted.org/packages/3f/f1/b2fcf5327ec3fda0f2836e9da02550565dbf18de6e83c1943f84901ef63c/click8-8.0.dev0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d1833879b653a3c5836c996ba62ca18d", "sha256": "3412342408c03fbfd3b1826c8fd0fb2caace9b15a9d1c9375555122855449c86" }, "downloads": -1, "filename": "click8-8.0.1.tar.gz", "has_sig": false, "md5_digest": "d1833879b653a3c5836c996ba62ca18d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 293033, "upload_time": "2019-08-24T08:42:26", "url": "https://files.pythonhosted.org/packages/4e/b4/a2279d9d0183784e9dd9fd62b7505adab0819662d4b169602a6fef6a5a72/click8-8.0.1.tar.gz" } ] }