trogon icon indicating copy to clipboard operation
trogon copied to clipboard

Easily turn your Click CLI into a powerful terminal application

Results 45 trogon issues
Sort by recently updated
recently updated
newest added

``` (venv) PS F:\machine-learning\testingjupyter> py .\ai.py tui Running ai.py process Traceback (most recent call last): File "F:\machine-learning\testingjupyter\ai.py", line 68, in process() File "F:\machine-learning\testingjupyter\venv\Lib\site-packages\click\core.py", line 1157, in __call__ return self.main(*args, **kwargs)...

Is it possible to use Trogon to generate an app, and then export that to code so I can use it as a baseline to edit / update? :)

Is it possible to use a web UI from Trogon?

Hi, This fixes a typo in the README.

Running the nogroup_demo example fails with FileNotFoundError: [Errno 2] No such file or directory The cwd and the program_name arguments to the os.execvp call seem to be correct, however the...

It's a minor thing, because it's somewhat obvious, but it feels somewhat nicer to have the required import statement on top of the code cell there. That way folks don't...

https://github.com/alecthomas/kong Curious if this is python exclusive or if multi-language is possible.

An option that is configured with `hidden=True` should not appear in the TUI. Minimal example: ```python @tui() @click.command() @click.option("-f", "--foo", default=False, is_flag=True, hidden=False) @click.option("-b", "--bar", default=False, is_flag=True, hidden=True) def cli(foo,...

If I got it correctly, typer is also based up on click. Might it be possible to use trogon with typer in mind?

Some missing braces caused the condition to ignore the instance check.