You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current CLI class has a lot of boiler plate code and based on obsolete ArgParser. So it would be easeir to maintain it if it will be rewritten to some modern lib like Typer
The text was updated successfully, but these errors were encountered:
I have used a number of projects recently that use click for cli interaction (click is the only dependency of typer). I had a look at converting json2python-models over to using click, and it looks like the way in which some CLI arguments are specified would have to be changed, at least if you want to be able to include help text with the arguments. Example here. Any input parameter that currently has a variable number of possible values (e.g. -dkf, -dkr, --merge) would need to be changed to only allowing a single value BUT allowing the parameter to be repeated numerous times, i.e.
Current CLI class has a lot of boiler plate code and based on obsolete ArgParser. So it would be easeir to maintain it if it will be rewritten to some modern lib like Typer
The text was updated successfully, but these errors were encountered: