Brian Kohan

Results 71 comments of Brian Kohan

Hi Nikita, > First, am I correct that the main motivation for this change is that IDE handles `split_settings` incorrectly? Not exactly, thats just a potential nice side effect. There...

This is in fact a very simple bug. The shell_complete parameter is not passed to TyperArgument. [See here](https://github.com/tiangolo/typer/blob/master/typer/main.py#L918-L942). I will submit a PR.

**If anyone has the ability to switch this issue label to a bug that would be appreciated!** It might be a while before my PR is merged so, here's the...

The tests run on Django 4-5 py312-django40: OK (37.11=setup[19.24]+cmd[17.87] seconds) py312-django41: OK (28.26=setup[11.27]+cmd[16.99] seconds) py312-django42: OK (28.32=setup[11.27]+cmd[17.06] seconds) py312-django50: OK (30.74=setup[11.39]+cmd[19.35] seconds) So I think so yes. I'm using it...

> Hey there. The pre release version (4.0a) tests up through Django 5. Version 3.1.0 (the most recent version available on pypi) does not test against 4.2/5 (unless it does...

Another approach is to use the rich export functions: - [export_html](https://rich.readthedocs.io/en/latest/reference/console.html?highlight=export_html#rich.console.Console.export_html) - [export_svg](https://rich.readthedocs.io/en/latest/reference/console.html?highlight=export_html#rich.console.Console.export_svg) - [export_text](https://rich.readthedocs.io/en/latest/reference/console.html?highlight=export_html#rich.console.Console.export_text) If you're using [sphinx-doc](https://www.sphinx-doc.org/en/master/) with [reStructuredText](https://docutils.sourceforge.io/rst.html), I wrote a [directive extension](https://github.com/sphinx-contrib/typer) to do this for...

This is starting to hit some of my projects. Wondering if anyone tried to contact @vdboor ? The update needed to make everything happy is trivial and already in git....

To make this work is definitely another patch situation. Typer sends the completions to click.echo which does take a stream as an argument, but theres no way to hook into...

There's a way to do this with ParamSpec, TypeVar and Generic

dataclass+Enum approach does address some of the challenges enum-properties does - but there are some key differences - namely that the value of the enumeration is now a dataclass instance...