All Projects → tiangolo → Typer Cli

tiangolo / Typer Cli

Licence: mit
Run Typer scripts with completion, without having to create a package, using Typer CLI.

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects
python3
1442 projects

Labels

Projects that are alternatives of or similar to Typer Cli

MeeInk
Material Design click effect
Stars: ✭ 33 (-67.65%)
Mutual labels:  click
Ybattributetexttapaction
一行代码添加文本点击事件/a fast way to implement click event text
Stars: ✭ 430 (+321.57%)
Mutual labels:  click
Rxgesture
RxSwift reactive wrapper for view gestures
Stars: ✭ 1,069 (+948.04%)
Mutual labels:  click
autoops for win
Window自动化运维,模拟鼠标移动、单击、模拟输入等,可用来实现复杂GUI应用的操作
Stars: ✭ 36 (-64.71%)
Mutual labels:  click
Begoneads
BeGoneAds is a script that puts some popular hosts file lists into the systems hosts file as a adblocker measure.
Stars: ✭ 314 (+207.84%)
Mutual labels:  click
Csvs To Sqlite
Convert CSV files into a SQLite database
Stars: ✭ 568 (+456.86%)
Mutual labels:  click
click-help-colors
Colorization of help messages in Click 🎨
Stars: ✭ 67 (-34.31%)
Mutual labels:  click
Action
Easy and lazy solution for click-event-binding.
Stars: ✭ 92 (-9.8%)
Mutual labels:  click
Sqlite Utils
Python CLI utility and library for manipulating SQLite databases
Stars: ✭ 368 (+260.78%)
Mutual labels:  click
Click Colorful
点击特效,五颜六色的小球绽放
Stars: ✭ 48 (-52.94%)
Mutual labels:  click
React Click Outside
Higher Order Component that provides click outside functionality
Stars: ✭ 266 (+160.78%)
Mutual labels:  click
Attributedstring
基于Swift插值方式优雅的构建富文本, 支持点击长按事件, 支持不同类型过滤, 支持自定义视图等.
Stars: ✭ 294 (+188.24%)
Mutual labels:  click
Universaltoast
简洁优雅可点击的toast控件,无BadTokenException风险,关闭通知权限依然正常显示。An elegant and flexible toast which can handle click event , avoid BadTokenException and run fine without notification permission
Stars: ✭ 748 (+633.33%)
Mutual labels:  click
create-flask-app
Package for Initializing a Flask Project Structure
Stars: ✭ 16 (-84.31%)
Mutual labels:  click
Kaidan
[Replaced by https://invent.kde.org/network/kaidan] Kaidan, a simple and user-friendly Jabber/XMPP client for every device and platform.
Stars: ✭ 67 (-34.31%)
Mutual labels:  click
vue-simple-context-menu
📌 Simple context-menu component built for Vue. Works well with both left and right clicks. Nothing too fancy, just works and is simple to use.
Stars: ✭ 162 (+58.82%)
Mutual labels:  click
Typer
Typer, build great CLIs. Easy to code. Based on Python type hints.
Stars: ✭ 6,793 (+6559.8%)
Mutual labels:  click
Fastclick
FastClick - A faster version the Click Modular Router featuring batching, advanced multi-processing and improved Netmap and DPDK support (ANCS'15). Check the metron branch for Metron specificities (NSDI'18).
Stars: ✭ 100 (-1.96%)
Mutual labels:  click
V Click Outside X
Vue V2 directive to react on clicks outside an element.
Stars: ✭ 91 (-10.78%)
Mutual labels:  click
Pyintelowl
Robust Python SDK and Command Line Client for interacting with IntelOwl's API.
Stars: ✭ 26 (-74.51%)
Mutual labels:  click

Typer CLI

Run Typer scripts with completion, without having to create a package, using Typer CLI.

Build Status Coverage Package version

There is an optional utility tool called Typer CLI, additional 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 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: https://typer.tiangolo.com/typer-cli/

Source Code for Typer CLI: https://github.com/tiangolo/typer-cli


Typer or Typer CLI

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

You use Typer in your Python scripts. Like in:

import 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:

$ typer my_script.py run

Hello World

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

Usage

Install

Install Typer CLI:

$ python -m pip install typer-cli
---> 100%
Successfully installed typer-cli

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

You can then install completion for it:

$ typer --install-completion

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

Sample script

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

from typing import Optional

import 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:

$ python -m pip install typer
---> 100%
Successfully installed typer

Run with Python

Then you could run your script with normal Python:

$ 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

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 TAB 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 command you get after installing typer-cli:

$ typer my_custom_script.py run hello

Hello World!

$ typer my_custom_script.py run hello --name Camila

Hello Camila!

$ typer my_custom_script.py run bye --name Camila

Bye Camila
  • Instead of using python directly you use the typer command.
  • After the name of the file, add the subcommand run.

✔️ If you installed completion for Typer CLI (for the typer command) as described above, when you hit TAB 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:

if __name__ == "__main__":
    app()

...you can also remove it if you are calling that script only with Typer CLI (using the typer 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:

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

Then you can call it with:

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

  Say hi to someone, by default to the World.

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

$ typer main.py run --name Camila

Hello Camila

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:

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

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

$ typer my_package.main run --name Camila

Hello Camila

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 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:

import 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.

$ typer some_script.py utils docs

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:

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

Docs saved to: README.md

Sample docs output

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


awesome-cli

Awesome CLI user manager.

Usage:

$ 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:

$ 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:

$ 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:

$ 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:

$ 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].