python-click
Port variant py38
Summary Optparse wrapper for CLI capabilities (PY38)
Package version 8.0.3
Homepage https://palletsprojects.com/p/click/
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants py39
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 11 OCT 2021, 22:56:49 UTC
Port created 27 SEP 2017, 23:06:09 UTC
Subpackage Descriptions
single \$ click\_ ========== Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. It's the "Command Line Interface Creation Kit". It's highly configurable but comes with sensible defaults out of the box. It aims to make the process of writing command line tools quick and fun while also preventing any frustration caused by the inability to implement an intended CLI API. Click in three points: - Arbitrary nesting of commands - Automatic help page generation - Supports lazy loading of subcommands at runtime Installing ---------- Install and update using `pip`_: .. code-block:: text $ pip install -U click .. _pip: https://pip.pypa.io/en/stable/getting-started/ A Simple Example ---------------- .. code-block:: python import click @click.command() @click.option("--count", default=1, help="Number of greetings.") @click.option("--name", prompt="Your name", help="The person to greet.") def hello(count, name): """Simple program that greets NAME for a total of COUNT times.""" for _ in range(count): click.echo(f"Hello, {name}!") if __name__ == '__main__': hello() .. code-block:: text $ python hello.py --count=3 Your name: Click Hello, Click! Hello, Click! Hello, Click! Donate ------ The Pallets organization develops and supports Click and other popular packages. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, `please donate today`_. .. _please donate today: https://palletsprojects.com/donate Links ----- - Documentation: https://click.palletsprojects.com/ - Changes: https://click.palletsprojects.com/changes/ - PyPI Releases: https://pypi.org/project/click/ - Source Code: https://github.com/pallets/click - Issue Tracker: https://github.com/pallets/click/issues - Website: https://palletsprojects.com/p/click - Twitter: https://twitter.com/PalletsTeam - Chat: https://discord.gg/pallets
Configuration Switches (platform-specific settings discarded)
PY38 ON Build using Python 3.8 PY39 OFF Build using Python 3.9
Package Dependencies by Type
Build (only) python-pip:single:py38
autoselect-python:single:standard
Build and Runtime python38:single:standard
Download groups
main mirror://PYPIWHL/48/58/c8aa6a8e62cc75f39fee1092c45d6b6ba684122697d7ce7d53f64f98a129
Distribution File Information
353f466495adaeb40b6b5f592f9f91cb22372351c84caeb068132442a4518ef3 97516 click-8.0.3-py3-none-any.whl
Ports that require python-click:py38
python-Flask:py38 Lightweight WSGI web application framework (PY38)
python-black:py38 Uncompromising code formatter (PY38)
python-celery:py38 Distributed Task Queue (PY38)
python-click-didyoumean:py38 Enables git-like did-you-mean feature (PY38)
python-click-log:py38 Logging integration for Click (PY38)
python-click-plugins:py38 Registers external CLI commands (PY38)
python-click-repl:py38 REPL plugin for Click (PY38)
python-click-threading:py38 Multithreaded Click apps made easy (PY38)
python-flex:py38 Swagger Schema validation (PY38)
python-vdirsyncer:py38 Synchronize calendars and contacts (PY38)