typer icon indicating copy to clipboard operation
typer copied to clipboard

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

Results 266 typer issues
Sort by recently updated
recently updated
newest added

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question
investigate

Adds callable support to `show_default`, allowing a `Callable[[], Union[bool, str]]` to be passed to dynamically determine the default to show in help messages. Closes https://github.com/tiangolo/typer/issues/354. Previously, `show_default` was incorrectly typed...

bug
feature
types

Fixes: https://github.com/tiangolo/typer/issues/151 Added `names` parameter, in order to user Enum names instead of values. Also for IntEnum, names are used by default, even if names is False.

feature
p3

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

feature
investigate

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

enhancement

### Describe the bug I have completions (via the `autocompletion` keyword argument in Arguments and Options) that include a colon (`:`) in the string. In zsh, these completions get split...

bug
shell / zsh

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question
investigate

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

enhancement

The following pull request adds support for custom `click.ParamType`s as requested in #311, with the implementation specified in https://github.com/tiangolo/typer/issues/311#issuecomment-932827651. Example here: ```python import json from typing import Any, Dict, Optional,...

click