typer-cloup-cli


Nametyper-cloup-cli JSON
Version 0.4.0 PyPI version JSON
download
home_pagehttps://github.com/alexreg/typer-cloup-cli
SummaryRun Typer scripts with completion, without having to create a package, using Typer CLI.
upload_time2023-01-25 04:39:08
maintainerAlexander Regueiro
docs_urlNone
authorSebastián Ramírez
requires_python>=3.7,<4.0
licenseMIT
keywords cli click cloup shell terminal typer
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # Typer CLI

<p align="center">
    <em>Run <strong>Typer</strong> scripts with completion, without having to create a package, using <strong>Typer CLI</strong>.</em>
</p>
<p align="center">
    <a href="https://travis-ci.com/alexreg/typer-cloup-cli" target="_blank">
        <img src="https://travis-ci.com/alexreg/typer-cloup-cli.svg?branch=master" alt="Build Status">
    </a>
    <a href="https://codecov.io/gh/alexreg/typer-cloup-cli" target="_blank">
        <img src="https://img.shields.io/codecov/c/github/alexreg/typer-cloup-cli" alt="Coverage">
    </a>
    <a href="https://pypi.org/project/typer-cloup-cli" target="_blank">
        <img src="https://badge.fury.io/py/typer-cloup-cli.svg" alt="Package version">
    </a>
</p>

There is an optional utility tool called **Typer CLI**, in addition to **Typer** itself.

It's main feature is to provide ✨ completion ✨ in the Terminal for your own small programs built with **Typer**.

... without you having to create a complete installable Python package.

It's probably most useful if you have a small custom Python script using **Typer** (maybe as part of some project), for some small tasks, and it's not complex/important enough to create a whole installable Python package for it (something to be installed with `pip`).

In that case, you can install **Typer CLI**, and run your program with the `typer-cloup` command in your Terminal, and it will provide completion for your script.

You can also use **Typer CLI** to generate Markdown documentation for your own **Typer** programs 📝.

---

**Documentation**: <a href="https://typer-cloup.netlify.app/typer-cloup-cli/" target="_blank">https://typer-cloup.netlify.app/typer-cloup-cli/</a>

**Source Code for Typer CLI**: <a href="https://github.com/alexreg/typer-cloup-cli" target="_blank">https://github.com/alexreg/typer-cloup-cli</a>

---

## **Typer** or **Typer CLI**

**Typer** is a library for building CLIs (Command Line Interface applications).

You use **Typer** in your Python scripts. Like in:

```Python
import typer_cloup as typer


def main():
    typer.echo("Hello World")


if __name__ == "__main__":
    typer.run(main)
```

**Typer CLI** is a command line application to run simple programs created with **Typer**, with completion in your terminal 🚀.

You use **Typer CLI** in your terminal, to run your scripts (as an alternative to calling `python` directly). Like in:

<div class="termy">

```console
$ typer-cloup my_script.py run

Hello World
```

</div>

But you never import anything from **Typer CLI** in your own scripts.

## Usage

### Install

Install **Typer CLI**:

<div class="termy">

```console
$ pip install typer-cloup-cli
---> 100%
Successfully installed typer-cloup-cli
```

</div>

That creates a `typer-cloup` command you can call in your terminal, much like `python`, `git`, or `echo`.

You can then install completion for it:

<div class="termy">

```console
$ typer-cloup --install-completion

zsh completion installed in /home/user/.bashrc.
Completion will take effect once you restart the terminal.
```

</div>

### Sample script

Let's say you have a script that uses **Typer** in `my_custom_script.py`:

```Python
from typing import Optional

import typer_cloup as typer

app = typer.Typer()


@app.command()
def hello(name: Optional[str] = None):
    if name:
        typer.echo(f"Hello {name}")
    else:
        typer.echo("Hello World!")


@app.command()
def bye(name: Optional[str] = None):
    if name:
        typer.echo(f"Bye {name}")
    else:
        typer.echo("Goodbye!")


if __name__ == "__main__":
    app()
```

For it to work, you would also install **Typer**:

<div class="termy">

```console
$ pip install typer
---> 100%
Successfully installed typer
```

</div>

### Run with Python

Then you could run your script with normal Python:

<div class="termy">

```console
$ python my_custom_script.py hello

Hello World!

$ python my_custom_script.py hello --name Camila

Hello Camila!

$ python my_custom_script.py bye --name Camila

Bye Camila
```

</div>

There's nothing wrong with using Python directly to run it. And, in fact, if some other code or program uses your script, that would probably be the best way to do it.

⛔️ But in your terminal, you won't get completion when hitting <kbd>TAB</kbd> for any of the subcommands or options, like `hello`, `bye`, and `--name`.

### Run with **Typer CLI**

Here's where **Typer CLI** is useful.

You can also run the same script with the `typer-cloup` command you get after installing `typer-cloup-cli`:

<div class="termy">

```console
$ typer-cloup my_custom_script.py run hello

Hello World!

$ typer-cloup my_custom_script.py run hello --name Camila

Hello Camila!

$ typer-cloup my_custom_script.py run bye --name Camila

Bye Camila
```

</div>

* Instead of using `python` directly you use the `typer-cloup` command.
* After the name of the file, add the subcommand `run`.

✔️ If you installed completion for **Typer CLI** (for the `typer-cloup` command) as described above, when you hit <kbd>TAB</kbd> you will have ✨ completion for everything ✨, including all the subcommands and options of your script, like `hello`, `bye`, and `--name` 🚀.

## If main

Because **Typer CLI** won't use the block with:

```Python
if __name__ == "__main__":
    app()
```

... you can also remove it if you are calling that script only with **Typer CLI** (using the `typer-cloup` command).

## Run other files

**Typer CLI** can run any script with **Typer**, but the script doesn't even have to use **Typer** at all.

**Typer CLI** could even run a file with a function that could be used with `typer.run()`, even if the script doesn't use `typer.run()` or anything else.

For example, a file `main.py` like this will still work:

```Python
def main(name: str = "World"):
    """
    Say hi to someone, by default to the World.
    """
    print(f"Hello {name}")
```

Then you can call it with:

<div class="termy">

```console
$ typer-cloup main.py run --help
Usage: typer-cloup run [OPTIONS]

  Say hi to someone, by default to the World.

Options:
  --name TEXT
  --help       Show this message and exit.

$ typer-cloup main.py run --name Camila

Hello Camila
```

</div>

And it will also have completion for things like the `--name` *CLI Option*.

## Run a package or module

Instead of a file path you can pass a module (possibly in a package) to import.

For example:

<div class="termy">

```console
$ typer-cloup my_package.main run --help
Usage: typer-cloup run [OPTIONS]

Options:
  --name TEXT
  --help       Show this message and exit.

$ typer-cloup my_package.main run --name Camila

Hello Camila
```

</div>

## Options

You can specify one of the following **CLI options**:

* `--app`: the name of the variable with a `Typer()` object to run as the main app.
* `--func`: the name of the variable with a function that would be used with `typer.run()`.

### Defaults

When your run a script with the **Typer CLI** (the `typer-cloup` command) it will use the app from the following priority:

* An app object from the `--app` *CLI Option*.
* A function to convert to a **Typer** app from `--func` *CLI Option* (like when using `typer.run()`).
* A **Typer** app in a variable with a name of `app`, `cli`, or `main`.
* The first **Typer** app available in the file, with any name.
* A function in a variable with a name of `main`, `cli`, or `app`.
* The first function in the file, with any name.

## Generate docs

**Typer CLI** can also generate Markdown documentation for your **Typer** application.

### Sample script with docs

For example, you could have a script like:

```Python
import typer_cloup as typer

app = typer.Typer(help="Awesome CLI user manager.")


@app.command()
def create(username: str):
    """
    Create a new user with USERNAME.
    """
    typer.echo(f"Creating user: {username}")


@app.command()
def delete(
    username: str,
    force: bool = typer.Option(
        ...,
        prompt="Are you sure you want to delete the user?",
        help="Force deletion without confirmation.",
    ),
):
    """
    Delete a user with USERNAME.

    If --force is not used, will ask for confirmation.
    """
    if force:
        typer.echo(f"Deleting user: {username}")
    else:
        typer.echo("Operation cancelled")


@app.command()
def delete_all(
    force: bool = typer.Option(
        ...,
        prompt="Are you sure you want to delete ALL users?",
        help="Force deletion without confirmation.",
    )
):
    """
    Delete ALL users in the database.

    If --force is not used, will ask for confirmation.
    """
    if force:
        typer.echo("Deleting all users")
    else:
        typer.echo("Operation cancelled")


@app.command()
def init():
    """
    Initialize the users database.
    """
    typer.echo("Initializing user database")


if __name__ == "__main__":
    app()
```

### Generate docs with Typer CLI

Then you could generate docs for it with **Typer CLI**.

You can use the subcommand `utils`.

And then the subcommand `docs`.

<div class="termy">

```console
$ typer-cloup some_script.py utils docs
```

</div>

**Options**:

* `--name TEXT`: The name of the CLI program to use in docs.
* `--output FILE`: An output file to write docs to, like README.md.

For example:

<div class="termy">

```console
$ typer-cloup my_package.main utils docs --name awesome-cli --output README.md

Docs saved to: README.md
```

</div>

### Sample docs output

For example, for the previous script, the generated docs would look like:

---

## `awesome-cli`

Awesome CLI user manager.

**Usage**:

```console
$ awesome-cli [OPTIONS] COMMAND [ARGS]...
```

**Options**:

* `--install-completion`: Install completion for the current shell.
* `--show-completion`: Show completion for the current shell, to copy it or customize the installation.
* `--help`: Show this message and exit.

**Commands**:

* `create`: Create a new user with USERNAME.
* `delete`: Delete a user with USERNAME.
* `delete-all`: Delete ALL users in the database.
* `init`: Initialize the users database.

## `awesome-cli create`

Create a new user with USERNAME.

**Usage**:

```console
$ awesome-cli create [OPTIONS] USERNAME
```

**Options**:

* `--help`: Show this message and exit.

## `awesome-cli delete`

Delete a user with USERNAME.

If --force is not used, will ask for confirmation.

**Usage**:

```console
$ awesome-cli delete [OPTIONS] USERNAME
```

**Options**:

* `--force / --no-force`: Force deletion without confirmation.  [required]
* `--help`: Show this message and exit.

## `awesome-cli delete-all`

Delete ALL users in the database.

If --force is not used, will ask for confirmation.

**Usage**:

```console
$ awesome-cli delete-all [OPTIONS]
```

**Options**:

* `--force / --no-force`: Force deletion without confirmation.  [required]
* `--help`: Show this message and exit.

## `awesome-cli init`

Initialize the users database.

**Usage**:

```console
$ awesome-cli init [OPTIONS]
```

**Options**:

* `--help`: Show this message and exit.

---

## License

**Typer CLI**, the same as **Typer**, is licensed under the terms of the MIT license.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/alexreg/typer-cloup-cli",
    "name": "typer-cloup-cli",
    "maintainer": "Alexander Regueiro",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "alex@noldorin.com",
    "keywords": "cli,click,cloup,shell,terminal,typer",
    "author": "Sebasti\u00e1n Ram\u00edrez",
    "author_email": "tiangolo@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a1/3e/876abb150ba2b1d2e2e7754fd14eed591154b0ea70a44d222e2b8d5b3d5e/typer_cloup_cli-0.4.0.tar.gz",
    "platform": null,
    "description": "# Typer CLI\n\n<p align=\"center\">\n    <em>Run <strong>Typer</strong> scripts with completion, without having to create a package, using <strong>Typer CLI</strong>.</em>\n</p>\n<p align=\"center\">\n    <a href=\"https://travis-ci.com/alexreg/typer-cloup-cli\" target=\"_blank\">\n        <img src=\"https://travis-ci.com/alexreg/typer-cloup-cli.svg?branch=master\" alt=\"Build Status\">\n    </a>\n    <a href=\"https://codecov.io/gh/alexreg/typer-cloup-cli\" target=\"_blank\">\n        <img src=\"https://img.shields.io/codecov/c/github/alexreg/typer-cloup-cli\" alt=\"Coverage\">\n    </a>\n    <a href=\"https://pypi.org/project/typer-cloup-cli\" target=\"_blank\">\n        <img src=\"https://badge.fury.io/py/typer-cloup-cli.svg\" alt=\"Package version\">\n    </a>\n</p>\n\nThere is an optional utility tool called **Typer CLI**, in addition to **Typer** itself.\n\nIt's main feature is to provide \u2728 completion \u2728 in the Terminal for your own small programs built with **Typer**.\n\n... without you having to create a complete installable Python package.\n\nIt's probably most useful if you have a small custom Python script using **Typer** (maybe as part of some project), for some small tasks, and it's not complex/important enough to create a whole installable Python package for it (something to be installed with `pip`).\n\nIn that case, you can install **Typer CLI**, and run your program with the `typer-cloup` command in your Terminal, and it will provide completion for your script.\n\nYou can also use **Typer CLI** to generate Markdown documentation for your own **Typer** programs \ud83d\udcdd.\n\n---\n\n**Documentation**: <a href=\"https://typer-cloup.netlify.app/typer-cloup-cli/\" target=\"_blank\">https://typer-cloup.netlify.app/typer-cloup-cli/</a>\n\n**Source Code for Typer CLI**: <a href=\"https://github.com/alexreg/typer-cloup-cli\" target=\"_blank\">https://github.com/alexreg/typer-cloup-cli</a>\n\n---\n\n## **Typer** or **Typer CLI**\n\n**Typer** is a library for building CLIs (Command Line Interface applications).\n\nYou use **Typer** in your Python scripts. Like in:\n\n```Python\nimport typer_cloup as typer\n\n\ndef main():\n    typer.echo(\"Hello World\")\n\n\nif __name__ == \"__main__\":\n    typer.run(main)\n```\n\n**Typer CLI** is a command line application to run simple programs created with **Typer**, with completion in your terminal \ud83d\ude80.\n\nYou use **Typer CLI** in your terminal, to run your scripts (as an alternative to calling `python` directly). Like in:\n\n<div class=\"termy\">\n\n```console\n$ typer-cloup my_script.py run\n\nHello World\n```\n\n</div>\n\nBut you never import anything from **Typer CLI** in your own scripts.\n\n## Usage\n\n### Install\n\nInstall **Typer CLI**:\n\n<div class=\"termy\">\n\n```console\n$ pip install typer-cloup-cli\n---> 100%\nSuccessfully installed typer-cloup-cli\n```\n\n</div>\n\nThat creates a `typer-cloup` command you can call in your terminal, much like `python`, `git`, or `echo`.\n\nYou can then install completion for it:\n\n<div class=\"termy\">\n\n```console\n$ typer-cloup --install-completion\n\nzsh completion installed in /home/user/.bashrc.\nCompletion will take effect once you restart the terminal.\n```\n\n</div>\n\n### Sample script\n\nLet's say you have a script that uses **Typer** in `my_custom_script.py`:\n\n```Python\nfrom typing import Optional\n\nimport typer_cloup as typer\n\napp = typer.Typer()\n\n\n@app.command()\ndef hello(name: Optional[str] = None):\n    if name:\n        typer.echo(f\"Hello {name}\")\n    else:\n        typer.echo(\"Hello World!\")\n\n\n@app.command()\ndef bye(name: Optional[str] = None):\n    if name:\n        typer.echo(f\"Bye {name}\")\n    else:\n        typer.echo(\"Goodbye!\")\n\n\nif __name__ == \"__main__\":\n    app()\n```\n\nFor it to work, you would also install **Typer**:\n\n<div class=\"termy\">\n\n```console\n$ pip install typer\n---> 100%\nSuccessfully installed typer\n```\n\n</div>\n\n### Run with Python\n\nThen you could run your script with normal Python:\n\n<div class=\"termy\">\n\n```console\n$ python my_custom_script.py hello\n\nHello World!\n\n$ python my_custom_script.py hello --name Camila\n\nHello Camila!\n\n$ python my_custom_script.py bye --name Camila\n\nBye Camila\n```\n\n</div>\n\nThere's nothing wrong with using Python directly to run it. And, in fact, if some other code or program uses your script, that would probably be the best way to do it.\n\n\u26d4\ufe0f But in your terminal, you won't get completion when hitting <kbd>TAB</kbd> for any of the subcommands or options, like `hello`, `bye`, and `--name`.\n\n### Run with **Typer CLI**\n\nHere's where **Typer CLI** is useful.\n\nYou can also run the same script with the `typer-cloup` command you get after installing `typer-cloup-cli`:\n\n<div class=\"termy\">\n\n```console\n$ typer-cloup my_custom_script.py run hello\n\nHello World!\n\n$ typer-cloup my_custom_script.py run hello --name Camila\n\nHello Camila!\n\n$ typer-cloup my_custom_script.py run bye --name Camila\n\nBye Camila\n```\n\n</div>\n\n* Instead of using `python` directly you use the `typer-cloup` command.\n* After the name of the file, add the subcommand `run`.\n\n\u2714\ufe0f If you installed completion for **Typer CLI** (for the `typer-cloup` command) as described above, when you hit <kbd>TAB</kbd> you will have \u2728 completion for everything \u2728, including all the subcommands and options of your script, like `hello`, `bye`, and `--name` \ud83d\ude80.\n\n## If main\n\nBecause **Typer CLI** won't use the block with:\n\n```Python\nif __name__ == \"__main__\":\n    app()\n```\n\n... you can also remove it if you are calling that script only with **Typer CLI** (using the `typer-cloup` command).\n\n## Run other files\n\n**Typer CLI** can run any script with **Typer**, but the script doesn't even have to use **Typer** at all.\n\n**Typer CLI** could even run a file with a function that could be used with `typer.run()`, even if the script doesn't use `typer.run()` or anything else.\n\nFor example, a file `main.py` like this will still work:\n\n```Python\ndef main(name: str = \"World\"):\n    \"\"\"\n    Say hi to someone, by default to the World.\n    \"\"\"\n    print(f\"Hello {name}\")\n```\n\nThen you can call it with:\n\n<div class=\"termy\">\n\n```console\n$ typer-cloup main.py run --help\nUsage: typer-cloup run [OPTIONS]\n\n  Say hi to someone, by default to the World.\n\nOptions:\n  --name TEXT\n  --help       Show this message and exit.\n\n$ typer-cloup main.py run --name Camila\n\nHello Camila\n```\n\n</div>\n\nAnd it will also have completion for things like the `--name` *CLI Option*.\n\n## Run a package or module\n\nInstead of a file path you can pass a module (possibly in a package) to import.\n\nFor example:\n\n<div class=\"termy\">\n\n```console\n$ typer-cloup my_package.main run --help\nUsage: typer-cloup run [OPTIONS]\n\nOptions:\n  --name TEXT\n  --help       Show this message and exit.\n\n$ typer-cloup my_package.main run --name Camila\n\nHello Camila\n```\n\n</div>\n\n## Options\n\nYou can specify one of the following **CLI options**:\n\n* `--app`: the name of the variable with a `Typer()` object to run as the main app.\n* `--func`: the name of the variable with a function that would be used with `typer.run()`.\n\n### Defaults\n\nWhen your run a script with the **Typer CLI** (the `typer-cloup` command) it will use the app from the following priority:\n\n* An app object from the `--app` *CLI Option*.\n* A function to convert to a **Typer** app from `--func` *CLI Option* (like when using `typer.run()`).\n* A **Typer** app in a variable with a name of `app`, `cli`, or `main`.\n* The first **Typer** app available in the file, with any name.\n* A function in a variable with a name of `main`, `cli`, or `app`.\n* The first function in the file, with any name.\n\n## Generate docs\n\n**Typer CLI** can also generate Markdown documentation for your **Typer** application.\n\n### Sample script with docs\n\nFor example, you could have a script like:\n\n```Python\nimport typer_cloup as typer\n\napp = typer.Typer(help=\"Awesome CLI user manager.\")\n\n\n@app.command()\ndef create(username: str):\n    \"\"\"\n    Create a new user with USERNAME.\n    \"\"\"\n    typer.echo(f\"Creating user: {username}\")\n\n\n@app.command()\ndef delete(\n    username: str,\n    force: bool = typer.Option(\n        ...,\n        prompt=\"Are you sure you want to delete the user?\",\n        help=\"Force deletion without confirmation.\",\n    ),\n):\n    \"\"\"\n    Delete a user with USERNAME.\n\n    If --force is not used, will ask for confirmation.\n    \"\"\"\n    if force:\n        typer.echo(f\"Deleting user: {username}\")\n    else:\n        typer.echo(\"Operation cancelled\")\n\n\n@app.command()\ndef delete_all(\n    force: bool = typer.Option(\n        ...,\n        prompt=\"Are you sure you want to delete ALL users?\",\n        help=\"Force deletion without confirmation.\",\n    )\n):\n    \"\"\"\n    Delete ALL users in the database.\n\n    If --force is not used, will ask for confirmation.\n    \"\"\"\n    if force:\n        typer.echo(\"Deleting all users\")\n    else:\n        typer.echo(\"Operation cancelled\")\n\n\n@app.command()\ndef init():\n    \"\"\"\n    Initialize the users database.\n    \"\"\"\n    typer.echo(\"Initializing user database\")\n\n\nif __name__ == \"__main__\":\n    app()\n```\n\n### Generate docs with Typer CLI\n\nThen you could generate docs for it with **Typer CLI**.\n\nYou can use the subcommand `utils`.\n\nAnd then the subcommand `docs`.\n\n<div class=\"termy\">\n\n```console\n$ typer-cloup some_script.py utils docs\n```\n\n</div>\n\n**Options**:\n\n* `--name TEXT`: The name of the CLI program to use in docs.\n* `--output FILE`: An output file to write docs to, like README.md.\n\nFor example:\n\n<div class=\"termy\">\n\n```console\n$ typer-cloup my_package.main utils docs --name awesome-cli --output README.md\n\nDocs saved to: README.md\n```\n\n</div>\n\n### Sample docs output\n\nFor example, for the previous script, the generated docs would look like:\n\n---\n\n## `awesome-cli`\n\nAwesome CLI user manager.\n\n**Usage**:\n\n```console\n$ awesome-cli [OPTIONS] COMMAND [ARGS]...\n```\n\n**Options**:\n\n* `--install-completion`: Install completion for the current shell.\n* `--show-completion`: Show completion for the current shell, to copy it or customize the installation.\n* `--help`: Show this message and exit.\n\n**Commands**:\n\n* `create`: Create a new user with USERNAME.\n* `delete`: Delete a user with USERNAME.\n* `delete-all`: Delete ALL users in the database.\n* `init`: Initialize the users database.\n\n## `awesome-cli create`\n\nCreate a new user with USERNAME.\n\n**Usage**:\n\n```console\n$ awesome-cli create [OPTIONS] USERNAME\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n## `awesome-cli delete`\n\nDelete a user with USERNAME.\n\nIf --force is not used, will ask for confirmation.\n\n**Usage**:\n\n```console\n$ awesome-cli delete [OPTIONS] USERNAME\n```\n\n**Options**:\n\n* `--force / --no-force`: Force deletion without confirmation.  [required]\n* `--help`: Show this message and exit.\n\n## `awesome-cli delete-all`\n\nDelete ALL users in the database.\n\nIf --force is not used, will ask for confirmation.\n\n**Usage**:\n\n```console\n$ awesome-cli delete-all [OPTIONS]\n```\n\n**Options**:\n\n* `--force / --no-force`: Force deletion without confirmation.  [required]\n* `--help`: Show this message and exit.\n\n## `awesome-cli init`\n\nInitialize the users database.\n\n**Usage**:\n\n```console\n$ awesome-cli init [OPTIONS]\n```\n\n**Options**:\n\n* `--help`: Show this message and exit.\n\n---\n\n## License\n\n**Typer CLI**, the same as **Typer**, is licensed under the terms of the MIT license.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Run Typer scripts with completion, without having to create a package, using Typer CLI.",
    "version": "0.4.0",
    "split_keywords": [
        "cli",
        "click",
        "cloup",
        "shell",
        "terminal",
        "typer"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d9af20305848cee36bec03586db5580457cdad024b8c9ff5eedfab4f9e9e4aa",
                "md5": "c86fb65eb33e71b736dbd13de3828c07",
                "sha256": "749fde8b4193d37e7b3919e543ed416c84c5e64b1ae97f72c2afc5eb07c4a391"
            },
            "downloads": -1,
            "filename": "typer_cloup_cli-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c86fb65eb33e71b736dbd13de3828c07",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 8973,
            "upload_time": "2023-01-25T04:39:07",
            "upload_time_iso_8601": "2023-01-25T04:39:07.051588Z",
            "url": "https://files.pythonhosted.org/packages/4d/9a/f20305848cee36bec03586db5580457cdad024b8c9ff5eedfab4f9e9e4aa/typer_cloup_cli-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a13e876abb150ba2b1d2e2e7754fd14eed591154b0ea70a44d222e2b8d5b3d5e",
                "md5": "4b9123ca6a5eed78f60d598b18b0b268",
                "sha256": "f9e233c0220cfc65217479c208ed20e7bf553dd322d9d18fc1e1c289da28fdf9"
            },
            "downloads": -1,
            "filename": "typer_cloup_cli-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4b9123ca6a5eed78f60d598b18b0b268",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 10304,
            "upload_time": "2023-01-25T04:39:08",
            "upload_time_iso_8601": "2023-01-25T04:39:08.462040Z",
            "url": "https://files.pythonhosted.org/packages/a1/3e/876abb150ba2b1d2e2e7754fd14eed591154b0ea70a44d222e2b8d5b3d5e/typer_cloup_cli-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-25 04:39:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "alexreg",
    "github_project": "typer-cloup-cli",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "typer-cloup-cli"
}
        
Elapsed time: 0.03084s