Skip to main content

More click.

Project description

more_click

PyPI PyPI - Python Version PyPI - License DOI

Extra stuff for click I use in basically every repo

More Options

The module more_click.options has several options (pre-defined instances of click.option()) that I use often. First, verbose_option makes it easy to adjust the logger of your package using -v.

There are also several that are useful for web stuff, including

Name Type Flag
more_click.host_option str --host
more_click.port_option str --port

Web Tools

In many packages, I've included a Flask web application in wsgi.py. I usually use the following form inside cli.py file to import the web application and keep it insulated from other package-related usages:

# cli.py
import click
from more_click import host_option, port_option


@click.command()
@host_option
@port_option
def web(host: str, port: str):
    from .wsgi import app  # modify to point to your module-level flask.Flask instance
    app.run(host=host, port=port)


if __name__ == '__main__':
    web()

However, sometimes I want to make it possible to run via gunicorn from the CLI, so I would use the following extensions to automatically determine if it should be run with Flask's development server or gunicorn.

# cli.py
import click
from more_click import host_option, port_option, with_gunicorn_option, workers_option, run_app


@click.command()
@host_option
@port_option
@with_gunicorn_option
@workers_option
def web(host: str, port: str, with_gunicorn: bool, workers: int):
    from .wsgi import app  # modify to point to your module-level flask.Flask instance
    run_app(app=app, with_gunicorn=with_gunicorn, host=host, port=port, workers=workers)


if __name__ == '__main__':
    web()

For ultimate lazy mode, I've written a wrapper around the second:

# cli.py
from more_click import make_web_command

web = make_web_command('my_package_name.wsgi:app')

if __name__ == '__main__':
    web()

This uses a standard wsgi-style string to locate the app, since you don't want to be eagerly importing the app in your CLI since it might rely on optional dependencies like Flask. If your CLI has other stuff, you can include the web command in a group like:

# cli.py
import click
from more_click import make_web_command


@click.group()
def main():
    """My awesome CLI."""


make_web_command('my_package_name.wsgi:app', group=main)

if __name__ == '__main__':
    main()

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

more_click-0.0.4.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

more_click-0.0.4-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file more_click-0.0.4.tar.gz.

File metadata

  • Download URL: more_click-0.0.4.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for more_click-0.0.4.tar.gz
Algorithm Hash digest
SHA256 0e441fdcd28da72c380a2d67e44d688c8c0acbd23473041270ab94e1284dff83
MD5 6fd43fe2f0952eb6440e4e2750fb239e
BLAKE2b-256 aaa8e4d91cf956004bdfed157c55684c0eab19f954c2b6adbb7c155498d4a11f

See more details on using hashes here.

Provenance

File details

Details for the file more_click-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: more_click-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for more_click-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 d145a7a36e593908628fbcab2ba66bd2a710f19fa1da66f3d31f0d75bc0b8326
MD5 aafac3e2e47af35fe9f6f0c48d413843
BLAKE2b-256 83f7abb43396baf1ea993598c6a63215e523daeef8426e9f8e6ee5ef81b83d56

See more details on using hashes here.

Provenance

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