I’m making a large command line tool with Typer (a wrapper on Click), and I was wondering how to provide a little help blurb when a user uses an invalid command, something like so:
$ cmd builld
Oops, the command "builld" is not valid. Did you mean:
build
build-other
beta build
I found some projects like thefuzz
, https://github.com/seatgeek/thefuzz, but there isn’t any documentation for actually making this work. Thanks!