Skip to main content

A bunch of useful click parameter types

Project description

click-params

Pypi version Coverage Status Documentation Status License Apache 2 Code Style

A bunch of useful click parameter types.

Why?

I often find myself wanting to use a click parameter able to handle list of strings, so I decide to put this in a library and I ended adding more parameter types that can be useful for various scripts including network, mathematics and so on.

Installation

pip install click-params

click-params starts working from python 3.7. It has a few dependencies:

Usage

import click
from click_params import Ipv4AddressListParamType

@click.command()
@click.option('-a', '--addresses', help='list of ipv4 addresses', prompt='list of ipv4 addresses to reserve',
 type=Ipv4AddressListParamType())
def pool(addresses):
    click.echo('reserved ips:')
    for ip in addresses:
        click.echo(ip)
$ pool --addresses='192.168.1.1,192.168.1.14'
reserved ips:
192.168.1.1
192.168.1.14

You can change the default separator "," by passing it when initializing the parameter type.

Documentation

Documentation is available at https://click-params.readthedocs.io/en/latest/.

Project details


Download files

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

Source Distribution

click-params-0.4.0.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

click_params-0.4.0-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file click-params-0.4.0.tar.gz.

File metadata

  • Download URL: click-params-0.4.0.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.7.7 Linux/5.4.0-122-generic

File hashes

Hashes for click-params-0.4.0.tar.gz
Algorithm Hash digest
SHA256 74b5c53e225c80037691aef5efa20b1a1fc9d342c85581e52c6cd3512dbcd987
MD5 40c92203953174ec68af9587226d9b09
BLAKE2b-256 655e553056e7eb8729efe6c1e8029f6977ca3c12801c49f6c747805365cea042

See more details on using hashes here.

File details

Details for the file click_params-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: click_params-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.7.7 Linux/5.4.0-122-generic

File hashes

Hashes for click_params-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 29028855a7574d8457087d3a0852108314604737d1999b71d57b9654b31d751a
MD5 a164cbc81b79c04e15dafbcea8368584
BLAKE2b-256 425c4ac566af7211b877758306e96165b880a430e1ba8893adf70c218360cbb6

See more details on using hashes here.

Supported by

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