Skip to content

Add FrozenSerializable, Optional Subparsers

Compare
Choose a tag to compare
@lebrice lebrice released this 19 Jan 03:32
· 114 commits to master since this release
9d4e4c8

Simple release: Adds optional subparsers.

This is the first step towards my ultimate goal, which is to have multiple, independent, optional subparsers.
Doesn't sound like much now, but this would be a killer feature, which would really help simple-parsing step above the subparser limitations of argparse.

This would be especially useful when creating command-line APIs for ML applications, when you might need a subparser for each type of model, or for each type of dataset, or for each type of optimizer, etc etc.

This is best achieved using subparsers, however the current API is a bit clumsy.
Here is the roadmap for that feature:

  1. Optional subparsers (This release)
  2. Multiple independant subparsers on a single dataclass (Next release)
  3. Multiple, inter-dependant subparsers (stretch goal)
    • (e.g. where the default value is dependant on the types of other fields)

Let me know what you think!

What's Changed

Full Changelog: v0.0.17...v0.0.18