Linters and static type checker are great for finding bugs in your code, but sometimes they misunderstand or you have some other reasons for leaving the code as is. In that case you might want to mute the error(s) to allow the linting or type checking to pass, either …
read moreOther articles
Smart CLIs with Typer
The go-to library for adding CLI functionality in python is the built in
argparse
library. This works really well, but there is a relatively new 3rd party library calledtyper
that boasts a number of improvements.Firstly, with typer, rather than configuring a parser with each argument, you can simply …
read more