Skip to main content

Serve click scripts over the web with minimal effort.

Project description

click-web

Serve click scripts over the web with minimal effort.

Example screenshot

Usage

See this demo screen capture.

Take an existing click script, like this one:

example_command.py

import click
import time

@click.group()
def cli():
    'A stupid script to test click-web'
    pass

@cli.command()
@click.option("--delay", type=float, default=0.01, help='delay for every line print')
@click.argument("lines", default=10, type=int)
def print_rows(lines, delay):
    'Print lines with a delay'
    click.echo(f"writing: {lines} with {delay}")
    for i in range(lines):
        click.echo(f"Hello row: {i}")
        time.sleep(delay)

if __name__ == '__main__':
    cli()

Create a minimal script to run with flask

app.py

from click_web import create_click_web_app
import example_command

app = create_click_web_app(example_command, example_command.cli)

Running example app:

In Bash:

export FLASK_ENV=development
export FLASK_APP=app.py
flask run

Caution: If you plan to serve publicly make sure you setup security (SSL, login etc.) See Authentication

Authentication

For an example of how to secure using http digest auth see the auth example.

Note: There is no permission system and all logged in users can access everything. If you plan to deploy in an open environment make sure to setup HTTPS.

Custom Styling

For an example of how to customize styling using CSS and add extra page head or footer see the custom example.

Unsupported click features

It has only been tested with basic click features, and most advanced features will probably not work.

  • Variadic arguments of file and path type

  • Promts (probably never will)

  • Custom ParamTypes (depending on implementation)

TODO

  • Abort started/running processes.

  • Browser history

Included 3:rd party libraries

SplitJs - Copyright (c) 2020 Nathan Cahill (MIT license)

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_web-0.8.6.tar.gz (40.0 kB view details)

Uploaded Source

Built Distribution

click_web-0.8.6-py3-none-any.whl (45.6 kB view details)

Uploaded Python 3

File details

Details for the file click_web-0.8.6.tar.gz.

File metadata

  • Download URL: click_web-0.8.6.tar.gz
  • Upload date:
  • Size: 40.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for click_web-0.8.6.tar.gz
Algorithm Hash digest
SHA256 7330aba64e8cb7f17e8e47d911a6b15cefc88530133166c14a4f1ca53f567352
MD5 fb7f51547878f3c81b34f12f94986a1c
BLAKE2b-256 71bd1d969518549b2da53c50ed11071ff6c7d3aa44f433662d53c7da9579369b

See more details on using hashes here.

File details

Details for the file click_web-0.8.6-py3-none-any.whl.

File metadata

  • Download URL: click_web-0.8.6-py3-none-any.whl
  • Upload date:
  • Size: 45.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for click_web-0.8.6-py3-none-any.whl
Algorithm Hash digest
SHA256 44f072bd54ca70a0bae2b8b5657042dd021fb481b200ce061f5bef4a995df8ee
MD5 a6bbceedbed54dfc3a29c5a205ae2cd3
BLAKE2b-256 452b3b23cee9059b3ff21b0ade2ca710991b25ab54ea05a25491fbccb76b0796

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