Hydra_typer
Using Typer and Hydra together
What is Typer?
Typer is a library for building CLI applications and is a wrapper on top the package click. Unlike click, there is no need to add decorators to the function to make the function arguments show up in help.
What is Hydra?
Hydra is a python framework to create complex configurations in an elegant and composable manner.
Using Typer and Hyrda in the same program
Since both Typer and Hydra uses the input arguments from sys
module, we need a workaround to use them together.