trogon


Nametrogon JSON
Version 0.5.0 PyPI version JSON
download
home_pagehttps://github.com/Textualize/trogon
SummaryAutomatically generate a Textual TUI for your Click CLI
upload_time2023-06-19 09:00:20
maintainer
docs_urlNone
authorDarren Burns
requires_python>=3.7,<4.0
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<p align="center">
    <img src="https://github.com/Textualize/trogon/assets/554369/f4751783-c322-4143-a6c1-d8c564d4e38f" alt="A picture of a trogon (bird) sitting on a laptop" width="300" align="center">
</p>
    
[![Discord](https://img.shields.io/discord/1026214085173461072)](https://discord.gg/Enf6Z3qhVr)


# Trogon

Auto-generate friendly terminal user interfaces for command line apps.


<details>  
  <summary> 🎬 Video demonstration </summary>

&nbsp;
    
A quick tour of a Trogon app applied to [sqlite-utils](https://github.com/simonw/sqlite-utils).

https://github.com/Textualize/trogon/assets/554369/c9e5dabb-5624-45cb-8612-f6ecfde70362

</details>


Trogon works with the popular [Click](https://click.palletsprojects.com/) library for Python, but will support other libraries and languages in the future.

## How it works

Trogon inspects your (command line) app and extracts a *schema* which describes the options / switches / help etc.
It then uses that information to build a [Textual](https://github.com/textualize/textual) UI you can use to edit and run the command. 

Ultimately we would like to formalize this schema and a protocol to extract or expose it from apps.
This which would allow Trogon to build TUIs for any CLI app, regardless of how it was built.
If you are familiar with Swagger, think Swagger for CLIs.

## Screenshots

<table>

<tr>
<td>
<img width="100%" alt="Screenshot 2023-05-20 at 12 07 31" src="https://github.com/Textualize/trogon/assets/554369/009cf3f2-f0c4-464b-bd74-60e303864443">
</td>

<td>
<img width="100%" alt="Screenshot 2023-05-20 at 12 08 21" src="https://github.com/Textualize/trogon/assets/554369/b1039ee6-4ba6-4123-b0dd-aa7b2341672f">
</td>
</tr>

<tr>

<td>
<img width="100%" alt="Screenshot 2023-05-20 at 12 08 53" src="https://github.com/Textualize/trogon/assets/554369/c0a42277-e946-4bef-b0d0-3fa87e4ab55b">
</td>

<td>
<img width="100%" alt="Screenshot 2023-05-20 at 12 09 47" src="https://github.com/Textualize/trogon/assets/554369/55477f6c-e6b8-49b6-85c1-b01bee006c8e">
</td>

</tr>

</table>

## Why?

Command line apps reward repeated use, but they lack in *discoverability*.
If you don't use a CLI app frequently, or there are too many options to commit to memory, a Trogon TUI interface can help you (re)discover options and switches.

## What does the name mean?

This project started life as a [Textual](https://github.com/Textualize/textual) experiment, which we have been giving give bird's names to.
A [Trogon](https://www.willmcgugan.com/blog/photography/post/costa-rica-trip-report-2017/#bird) is a beautiful bird I was lucky enough to photograph in 2017.

See also [Frogmouth](https://github.com/Textualize/frogmouth), a Markdown browser for the terminal.

## Roadmap

Trogon is usable now. It is only 2 lines (!) of code to add to an existing project.

It is still in an early stage of development, and we have lots of improvements planned for it.

## Installing

Trogon may be installed with PyPI.

```bash
pip install trogon
```

## Quickstart

1. Import `from trogon import tui`
2. Add the `@tui` decorator above your click app. e.g.
    ```python
    @tui()
    @click.group(...)
    def cli():
        ...
    ```
3. Your click app will have a new `tui` command available.

See also the `examples` folder for two example apps.

## Custom command name and custom help

By default the command added will be called `tui` and the help text for it will be `Open Textual TUI.`

You can customize one or both of these using the `help=` and `command=` parameters:

```python
@tui(command="ui", help="Open terminal UI")
@click.group(...)
def cli():
    ...
```

## Follow this project

If this app interests you, you may want to join the Textual [Discord server](https://discord.gg/Enf6Z3qhVr) where you can talk to Textual developers / community.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Textualize/trogon",
    "name": "trogon",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Darren Burns",
    "author_email": "darrenb900@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/08/37/68b64c54aa5a2663f08630dfab1561f8c492d2d50b85310d62e43f289dda/trogon-0.5.0.tar.gz",
    "platform": null,
    "description": "\n<p align=\"center\">\n    <img src=\"https://github.com/Textualize/trogon/assets/554369/f4751783-c322-4143-a6c1-d8c564d4e38f\" alt=\"A picture of a trogon (bird) sitting on a laptop\" width=\"300\" align=\"center\">\n</p>\n    \n[![Discord](https://img.shields.io/discord/1026214085173461072)](https://discord.gg/Enf6Z3qhVr)\n\n\n# Trogon\n\nAuto-generate friendly terminal user interfaces for command line apps.\n\n\n<details>  \n  <summary> \ud83c\udfac Video demonstration </summary>\n\n&nbsp;\n    \nA quick tour of a Trogon app applied to [sqlite-utils](https://github.com/simonw/sqlite-utils).\n\nhttps://github.com/Textualize/trogon/assets/554369/c9e5dabb-5624-45cb-8612-f6ecfde70362\n\n</details>\n\n\nTrogon works with the popular [Click](https://click.palletsprojects.com/) library for Python, but will support other libraries and languages in the future.\n\n## How it works\n\nTrogon inspects your (command line) app and extracts a *schema* which describes the options / switches / help etc.\nIt then uses that information to build a [Textual](https://github.com/textualize/textual) UI you can use to edit and run the command. \n\nUltimately we would like to formalize this schema and a protocol to extract or expose it from apps.\nThis which would allow Trogon to build TUIs for any CLI app, regardless of how it was built.\nIf you are familiar with Swagger, think Swagger for CLIs.\n\n## Screenshots\n\n<table>\n\n<tr>\n<td>\n<img width=\"100%\" alt=\"Screenshot 2023-05-20 at 12 07 31\" src=\"https://github.com/Textualize/trogon/assets/554369/009cf3f2-f0c4-464b-bd74-60e303864443\">\n</td>\n\n<td>\n<img width=\"100%\" alt=\"Screenshot 2023-05-20 at 12 08 21\" src=\"https://github.com/Textualize/trogon/assets/554369/b1039ee6-4ba6-4123-b0dd-aa7b2341672f\">\n</td>\n</tr>\n\n<tr>\n\n<td>\n<img width=\"100%\" alt=\"Screenshot 2023-05-20 at 12 08 53\" src=\"https://github.com/Textualize/trogon/assets/554369/c0a42277-e946-4bef-b0d0-3fa87e4ab55b\">\n</td>\n\n<td>\n<img width=\"100%\" alt=\"Screenshot 2023-05-20 at 12 09 47\" src=\"https://github.com/Textualize/trogon/assets/554369/55477f6c-e6b8-49b6-85c1-b01bee006c8e\">\n</td>\n\n</tr>\n\n</table>\n\n## Why?\n\nCommand line apps reward repeated use, but they lack in *discoverability*.\nIf you don't use a CLI app frequently, or there are too many options to commit to memory, a Trogon TUI interface can help you (re)discover options and switches.\n\n## What does the name mean?\n\nThis project started life as a [Textual](https://github.com/Textualize/textual) experiment, which we have been giving give bird's names to.\nA [Trogon](https://www.willmcgugan.com/blog/photography/post/costa-rica-trip-report-2017/#bird) is a beautiful bird I was lucky enough to photograph in 2017.\n\nSee also [Frogmouth](https://github.com/Textualize/frogmouth), a Markdown browser for the terminal.\n\n## Roadmap\n\nTrogon is usable now. It is only 2 lines (!) of code to add to an existing project.\n\nIt is still in an early stage of development, and we have lots of improvements planned for it.\n\n## Installing\n\nTrogon may be installed with PyPI.\n\n```bash\npip install trogon\n```\n\n## Quickstart\n\n1. Import `from trogon import tui`\n2. Add the `@tui` decorator above your click app. e.g.\n    ```python\n    @tui()\n    @click.group(...)\n    def cli():\n        ...\n    ```\n3. Your click app will have a new `tui` command available.\n\nSee also the `examples` folder for two example apps.\n\n## Custom command name and custom help\n\nBy default the command added will be called `tui` and the help text for it will be `Open Textual TUI.`\n\nYou can customize one or both of these using the `help=` and `command=` parameters:\n\n```python\n@tui(command=\"ui\", help=\"Open terminal UI\")\n@click.group(...)\ndef cli():\n    ...\n```\n\n## Follow this project\n\nIf this app interests you, you may want to join the Textual [Discord server](https://discord.gg/Enf6Z3qhVr) where you can talk to Textual developers / community.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Automatically generate a Textual TUI for your Click CLI",
    "version": "0.5.0",
    "project_urls": {
        "Homepage": "https://github.com/Textualize/trogon"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "474a21bb4a3066eacdaa6badbb00e74c75d3ba937712da08d95dd0b318ec46d0",
                "md5": "46170b17b2c4eb627ebf9b35f1604fc6",
                "sha256": "987d2195c1dd2f93c50e555063a9de57edbc5906ce20ee39081343ff194952c1"
            },
            "downloads": -1,
            "filename": "trogon-0.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "46170b17b2c4eb627ebf9b35f1604fc6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 24700,
            "upload_time": "2023-06-19T09:00:17",
            "upload_time_iso_8601": "2023-06-19T09:00:17.231710Z",
            "url": "https://files.pythonhosted.org/packages/47/4a/21bb4a3066eacdaa6badbb00e74c75d3ba937712da08d95dd0b318ec46d0/trogon-0.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "083768b64c54aa5a2663f08630dfab1561f8c492d2d50b85310d62e43f289dda",
                "md5": "bdbdea662b2efc70e01a0f1c3fcf3c64",
                "sha256": "61a57f0f1a38227d90601cd020f46960be8e36947b5e56c6932c2e01ecc5042a"
            },
            "downloads": -1,
            "filename": "trogon-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "bdbdea662b2efc70e01a0f1c3fcf3c64",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 21791,
            "upload_time": "2023-06-19T09:00:20",
            "upload_time_iso_8601": "2023-06-19T09:00:20.679371Z",
            "url": "https://files.pythonhosted.org/packages/08/37/68b64c54aa5a2663f08630dfab1561f8c492d2d50b85310d62e43f289dda/trogon-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-19 09:00:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Textualize",
    "github_project": "trogon",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "trogon"
}
        
Elapsed time: 0.09687s