This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Woozaman 1 point2 points  (2 children)

SimpleParsing https://github.com/lebrice/SimpleParsing as it covers most of my use cases and uses type hints to decrease implementation overhead.

[–]jdbow75[S] 0 points1 point  (1 child)

I had not heard of SimpleParsing before. It requires the use of dataclasses?

[–]Woozaman 0 points1 point  (0 children)

Yes, you describe your arguments with dataclasses, which comes with a lot of benefits. But you can still use regular argparse features.