skillfed

typer-cli

Typer, build great CLIs. Easy to code. Based on Python type hints.

typer-cli v0.24.0 78.8K downloads/30d#14,402 on PyPI19,895
Permissive license MIT Active released

What it is and what it does

typer-cli is a deprecated package that serves only as a migration bridge for legacy projects that previously depended on it. It contains no code of its own and simply depends on typer. The package's entire purpose is to allow old projects to update their dependencies without breaking, while guiding them toward installing typer directly instead.

The actual CLI functionality—building command-line applications using Python type hints—lives in typer, not in typer-cli. This package is a hollow redirect and will not receive any future updates or maintenance.

Use it for:

  • Updating legacy projects that explicitly depend on typer-cli to migrate them to typer without breaking their build process
  • Understanding why typer-cli exists and why it should be removed from new projects in favor of typer
  • Maintaining backward compatibility in old dependency specifications while transitioning to the main typer package

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

This package is a deprecated migration shim that exists only to redirect users to the main typer package; it has no independent functionality.

No. Do not install this package. The package's own documentation explicitly warns against installation. Install typer instead, which includes all functionality and is actively maintained. This package exists only as a deprecated migration path for old projects and will receive no further updates.

Install

typer-cli on PyPI

pip

pip install typer-cli

uv

uv add typer-cli

poetry

poetry add typer-cli

Installing typer-cli

Before you install

Low friction to install, but the package itself is deprecated and no longer maintained. The repository remains active, but this specific package will receive no further updates.

License in practice

MIT license permits free use, modification, and distribution with minimal restrictions, making it safe from a licensing perspective—though the package's deprecated status is the real concern.

Quickstart

# Do not install typer-cli. Instead:
pip install typer

# Then use typer directly:
import typer

app = typer.Typer()

@app.command()
def hello(name: str):
    print(f"Hello {name}")

if __name__ == "__main__":
    app()

Requires Python >=3.10; this package is explicitly deprecated and should not be used for new projects.

Verify before relying

  • Whether typer is a suitable replacement for existing typer-cli users without code changes
  • Timeline for when this package will stop receiving published versions

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 1 — typer
Maintenance actively maintained — 179 days since the last release
Last repo commit
First released
Downloads 78,840/month — #14,402 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: typer_cli-0.24.0-py3-none-any.whl

Development Status :: 4 - BetaIntended Audience :: DevelopersIntended Audience :: Information TechnologyIntended Audience :: System AdministratorsOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Topic :: Software DevelopmentTopic :: Software Development :: LibrariesTopic :: Software Development :: Libraries :: Application FrameworksTopic :: Software Development :: Libraries :: Python ModulesTyping :: Typed

Tags

typer cli toolpython command line interfacetype hints cli buildercli application frameworkpython script to cli
deprecatedmigration-shim

More Software Development packages