Skip to main content

Composable command line interface toolkit

Project description

Artefacts Click

This is a simple fork of the click package that supports deeper localisation. Artefacts tools are using this fork while its features get tentatively added to the click main line (through this PR).

This fork is completely submitted to the click original project. All changes here are for localisation---no feature change. Please note this fork resets versioning to avoid confusion.

The present version 0.1.0 is based off click==8.2.0 and will be kept in sync. Please get in touch through issues if we're getting late at syncing!

$ 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

A Simple Example

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()
$ 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.

Contributing

See our detailed contributing documentation for many ways to contribute, including reporting issues, requesting features, asking or answering questions, and making PRs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

artefacts_click-0.1.0-py3-none-any.whl (103.8 kB view details)

Uploaded Python 3

File details

Details for the file artefacts_click-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for artefacts_click-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 da8330c690e1176477c841466746622a33037beaa827573b393545ac01cf15ec
MD5 2fc4f66cac5119ddd27bb2b20b234240
BLAKE2b-256 a89282a8b8b0ba93b1a72a5fb92e73f828a72d4a11630f090de96644906f2959

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page