Dane Hillard

Results 121 comments of Dane Hillard

Hey @askerrit, this is a pretty cool idea and I could imagine it being a pretty nice way to get started building a full-fledged Textual app, maybe. Unfortunately, though, my...

Hey @askerrit, for my benefit can you elaborate some on your question here? What would you like to be able to do, and how do you imagine it working with...

@Wytamma nice project! To clarify, Trogon doesn't support a web UI itself, so something like GUIGAGA or rolling your own will be necessary at this time.

Hey @boehmseb! I will be doing what I can to keep picking up some of Trogon's needsโ€”I can't make any specific guarantees about my time, though! FWIW I see I...

A workaround for this is to override the `Enum` class's `__str__` method to return the string representation of the enum value: ```python from typing_extensions import Annotated class SomeChoiceType(str, Enum): ONE...

I've been using the workaround above which feels pretty natural in practice now; I'm not sure there's a clear ask from the Trogon side of the fence on it, at...

I will share a way that we ended up doing this outside the confines of Trogon, for what it's worth, perhaps to inspire further ideas: Our organization has a data...

@ddsmit Thanks for filing! Trogon was initially built to support Click applications; right now Trogon only very lightly supports Typer, in that there's a small wrapper so that Trogon can...

I looked into Python-driven additions to shell history for a Typer-based CLI I've built (which uses Trogon for command discoverability) and ultimately found that there doesn't appear to be a...

Given open or past issues and comments asking about support for at least: - Typer - argh - argparse - python-fire - golang kong It seems that #43 captures the...