Pyrallis is a framework for structured configuration parsing from both cmd and files. Simply define your desired configuration structure as a dataclass and let pyrallis do the rest!
Hi, thank you for developing this powerful toolbox. I have a problem when trying to import a package which relies on the pyrallis into my own code. Because I use argparse in my script, pyrallis in that package seems also get my args from the command line, which leads to errors.
I wonder if it is possible to disable the pyrallis to read the args from command line(only get them from config_file)? Thank you!
Hi, thank you for developing this powerful toolbox. I have a problem when trying to import a package which relies on the
pyrallis
into my own code. Because I useargparse
in my script,pyrallis
in that package seems also get my args from the command line, which leads to errors.I wonder if it is possible to disable the pyrallis to read the args from command line(only get them from config_file)? Thank you!