├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── benchmark.yml │ ├── build.yml │ ├── python-publish.yml │ └── upload.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── _config.yml ├── codecov.yml ├── docs ├── README.md └── Roadmap.md ├── examples ├── ML │ ├── README.md │ ├── ml_example_after.py │ ├── ml_example_before.py │ └── other_ml_example.py ├── README.md ├── __init__.py ├── aliases │ ├── README.md │ └── aliases_example.py ├── config_files │ ├── README.md │ ├── composition.py │ ├── composition_defaults.yaml │ ├── config_a.yaml │ ├── config_b.yaml │ ├── many_configs.py │ ├── many_configs.yaml │ ├── one_config.py │ └── one_config.yaml ├── container_types │ ├── README.md │ └── lists_example.py ├── custom_args │ ├── README.md │ └── custom_args_example.py ├── dataclasses │ ├── README.md │ ├── dataclass_example.py │ └── hyperparameters_example.py ├── demo.py ├── demo_simple.py ├── docstrings │ ├── README.md │ └── docstrings_example.py ├── enums │ ├── README.md │ └── enums_example.py ├── inheritance │ ├── README.md │ ├── inheritance_example.py │ ├── ml_inheritance.py │ └── ml_inheritance_2.py ├── merging │ ├── README.md │ ├── multiple_example.py │ └── multiple_lists_example.py ├── nesting │ ├── README.md │ └── nesting_example.py ├── partials │ ├── README.md │ └── partials_example.py ├── prefixing │ ├── README.md │ └── manual_prefix_example.py ├── serialization │ ├── README.md │ ├── bob.json │ ├── custom_types_example.py │ ├── serialization_example.ipynb │ └── serialization_example.py ├── simple │ ├── _before.py │ ├── basic.py │ ├── choice.py │ ├── flag.py │ ├── help.py │ ├── inheritance.py │ ├── option_strings.py │ ├── reuse.py │ └── to_json.py ├── subgroups │ ├── README.md │ └── subgroups_example.py ├── subparsers │ ├── README.md │ ├── optional_subparsers.py │ └── subparsers_example.py └── ugly │ ├── ugly_example_after.py │ └── ugly_example_before.py ├── pyproject.toml ├── requirements-test.txt ├── simple_parsing ├── __init__.py ├── annotation_utils │ ├── __init__.py │ └── get_field_annotations.py ├── conflicts.py ├── decorators.py ├── docstring.py ├── help_formatter.py ├── helpers │ ├── __init__.py │ ├── custom_actions.py │ ├── fields.py │ ├── flatten.py │ ├── hparams │ │ ├── __init__.py │ │ ├── hparam.py │ │ ├── hyperparameters.py │ │ ├── hyperparameters_test.py │ │ ├── priors.py │ │ ├── priors_test.py │ │ └── utils.py │ ├── nested_partial.py │ ├── partial.py │ ├── serialization │ │ ├── __init__.py │ │ ├── decoding.py │ │ ├── encoding.py │ │ ├── serializable.py │ │ └── yaml_serialization.py │ └── subgroups.py ├── parsing.py ├── py.typed ├── replace.py ├── utils.py └── wrappers │ ├── __init__.py │ ├── dataclass_wrapper.py │ ├── field_metavar.py │ ├── field_parsing.py │ ├── field_wrapper.py │ └── wrapper.py ├── test ├── __init__.py ├── conftest.py ├── foo.py ├── helpers │ ├── __init__.py │ ├── test_encoding.py │ ├── test_encoding │ │ ├── test_encoding_with_dc_types__json_obj0_.json │ │ ├── test_encoding_with_dc_types__json_obj1_.json │ │ ├── test_encoding_with_dc_types__yaml_obj0_.yaml │ │ └── test_encoding_with_dc_types__yaml_obj1_.yaml │ ├── test_enum_serialization.py │ ├── test_from_dict.py │ ├── test_partial.py │ ├── test_partial_postponed.py │ ├── test_save.py │ └── test_serializable.py ├── nesting │ ├── __init__.py │ ├── example_use_cases.py │ ├── test_default_factory_help_strings.py │ ├── test_nesting_auto.py │ ├── test_nesting_defaults.py │ ├── test_nesting_explicit.py │ ├── test_nesting_merge.py │ ├── test_nesting_simple.py │ └── test_weird_use_cases.py ├── postponed_annotations │ ├── __init__.py │ ├── a.py │ ├── b.py │ ├── multi_inherits.py │ ├── overwrite_attribute.py │ ├── overwrite_base.py │ ├── overwrite_subclass.py │ └── test_postponed_annotations.py ├── test_aliases.py ├── test_base.py ├── test_bools.py ├── test_choice.py ├── test_conf_path.py ├── test_conflicts.py ├── test_custom_args.py ├── test_decoding.py ├── test_decorator.py ├── test_default_args.py ├── test_docstrings.py ├── test_examples.py ├── test_fields.py ├── test_forward_ref.py ├── test_future_annotations.py ├── test_generation_mode.py ├── test_huggingface_compat.py ├── test_inheritance.py ├── test_initvar.py ├── test_issue64.py ├── test_issue_107.py ├── test_issue_132.py ├── test_issue_144.py ├── test_issue_46.py ├── test_issue_48.py ├── test_issue_96.py ├── test_lists.py ├── test_literal.py ├── test_multiple.py ├── test_optional.py ├── test_optional_subparsers.py ├── test_optional_union.py ├── test_performance.py ├── test_positional.py ├── test_replace.py ├── test_replace_subgroups.py ├── test_set_defaults.py ├── test_subgroups.py ├── test_subgroups │ ├── test_help[Config---help].md │ ├── test_help[Config---model=model_a --help].md │ ├── test_help[Config---model=model_b --help].md │ ├── test_help[ConfigWithFrozen---conf=even --a 100 --help].md │ ├── test_help[ConfigWithFrozen---conf=even --help].md │ ├── test_help[ConfigWithFrozen---conf=odd --a 123 --help].md │ ├── test_help[ConfigWithFrozen---conf=odd --help].md │ └── test_help[ConfigWithFrozen---help].md ├── test_subparsers.py ├── test_suppress.py ├── test_tuples.py ├── test_union.py ├── test_utils.py ├── testutils.py └── utils │ ├── __init__.py │ ├── test_flattened.py │ ├── test_mutable_field.py │ └── test_yaml.py └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | simple_parsing/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/.github/workflows/upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/_config.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/docs/Roadmap.md -------------------------------------------------------------------------------- /examples/ML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/ML/README.md -------------------------------------------------------------------------------- /examples/ML/ml_example_after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/ML/ml_example_after.py -------------------------------------------------------------------------------- /examples/ML/ml_example_before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/ML/ml_example_before.py -------------------------------------------------------------------------------- /examples/ML/other_ml_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/ML/other_ml_example.py -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/aliases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/aliases/README.md -------------------------------------------------------------------------------- /examples/aliases/aliases_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/aliases/aliases_example.py -------------------------------------------------------------------------------- /examples/config_files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/config_files/README.md -------------------------------------------------------------------------------- /examples/config_files/composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/config_files/composition.py -------------------------------------------------------------------------------- /examples/config_files/composition_defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/config_files/composition_defaults.yaml -------------------------------------------------------------------------------- /examples/config_files/config_a.yaml: -------------------------------------------------------------------------------- 1 | foo: 2 | a: "default value for `a` from the config_a.yaml file" 3 | -------------------------------------------------------------------------------- /examples/config_files/config_b.yaml: -------------------------------------------------------------------------------- 1 | bar: 2 | b: "default value for `b` from the config_b.yaml file" 3 | -------------------------------------------------------------------------------- /examples/config_files/many_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/config_files/many_configs.py -------------------------------------------------------------------------------- /examples/config_files/many_configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/config_files/many_configs.yaml -------------------------------------------------------------------------------- /examples/config_files/one_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/config_files/one_config.py -------------------------------------------------------------------------------- /examples/config_files/one_config.yaml: -------------------------------------------------------------------------------- 1 | exp_name: my_yaml_exp 2 | workers: 42 3 | -------------------------------------------------------------------------------- /examples/container_types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/container_types/README.md -------------------------------------------------------------------------------- /examples/container_types/lists_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/container_types/lists_example.py -------------------------------------------------------------------------------- /examples/custom_args/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/custom_args/README.md -------------------------------------------------------------------------------- /examples/custom_args/custom_args_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/custom_args/custom_args_example.py -------------------------------------------------------------------------------- /examples/dataclasses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/dataclasses/README.md -------------------------------------------------------------------------------- /examples/dataclasses/dataclass_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/dataclasses/dataclass_example.py -------------------------------------------------------------------------------- /examples/dataclasses/hyperparameters_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/dataclasses/hyperparameters_example.py -------------------------------------------------------------------------------- /examples/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/demo.py -------------------------------------------------------------------------------- /examples/demo_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/demo_simple.py -------------------------------------------------------------------------------- /examples/docstrings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/docstrings/README.md -------------------------------------------------------------------------------- /examples/docstrings/docstrings_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/docstrings/docstrings_example.py -------------------------------------------------------------------------------- /examples/enums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/enums/README.md -------------------------------------------------------------------------------- /examples/enums/enums_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/enums/enums_example.py -------------------------------------------------------------------------------- /examples/inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/inheritance/README.md -------------------------------------------------------------------------------- /examples/inheritance/inheritance_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/inheritance/inheritance_example.py -------------------------------------------------------------------------------- /examples/inheritance/ml_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/inheritance/ml_inheritance.py -------------------------------------------------------------------------------- /examples/inheritance/ml_inheritance_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/inheritance/ml_inheritance_2.py -------------------------------------------------------------------------------- /examples/merging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/merging/README.md -------------------------------------------------------------------------------- /examples/merging/multiple_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/merging/multiple_example.py -------------------------------------------------------------------------------- /examples/merging/multiple_lists_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/merging/multiple_lists_example.py -------------------------------------------------------------------------------- /examples/nesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/nesting/README.md -------------------------------------------------------------------------------- /examples/nesting/nesting_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/nesting/nesting_example.py -------------------------------------------------------------------------------- /examples/partials/README.md: -------------------------------------------------------------------------------- 1 | # Partials - Configuring arbitrary classes / callables 2 | -------------------------------------------------------------------------------- /examples/partials/partials_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/partials/partials_example.py -------------------------------------------------------------------------------- /examples/prefixing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/prefixing/README.md -------------------------------------------------------------------------------- /examples/prefixing/manual_prefix_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/prefixing/manual_prefix_example.py -------------------------------------------------------------------------------- /examples/serialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/serialization/README.md -------------------------------------------------------------------------------- /examples/serialization/bob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/serialization/bob.json -------------------------------------------------------------------------------- /examples/serialization/custom_types_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/serialization/custom_types_example.py -------------------------------------------------------------------------------- /examples/serialization/serialization_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/serialization/serialization_example.ipynb -------------------------------------------------------------------------------- /examples/serialization/serialization_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/serialization/serialization_example.py -------------------------------------------------------------------------------- /examples/simple/_before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/simple/_before.py -------------------------------------------------------------------------------- /examples/simple/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/simple/basic.py -------------------------------------------------------------------------------- /examples/simple/choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/simple/choice.py -------------------------------------------------------------------------------- /examples/simple/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/simple/flag.py -------------------------------------------------------------------------------- /examples/simple/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/simple/help.py -------------------------------------------------------------------------------- /examples/simple/inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/simple/inheritance.py -------------------------------------------------------------------------------- /examples/simple/option_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/simple/option_strings.py -------------------------------------------------------------------------------- /examples/simple/reuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/simple/reuse.py -------------------------------------------------------------------------------- /examples/simple/to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/simple/to_json.py -------------------------------------------------------------------------------- /examples/subgroups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/subgroups/README.md -------------------------------------------------------------------------------- /examples/subgroups/subgroups_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/subgroups/subgroups_example.py -------------------------------------------------------------------------------- /examples/subparsers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/subparsers/README.md -------------------------------------------------------------------------------- /examples/subparsers/optional_subparsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/subparsers/optional_subparsers.py -------------------------------------------------------------------------------- /examples/subparsers/subparsers_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/subparsers/subparsers_example.py -------------------------------------------------------------------------------- /examples/ugly/ugly_example_after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/ugly/ugly_example_after.py -------------------------------------------------------------------------------- /examples/ugly/ugly_example_before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/examples/ugly/ugly_example_before.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | orion 4 | -------------------------------------------------------------------------------- /simple_parsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/__init__.py -------------------------------------------------------------------------------- /simple_parsing/annotation_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_parsing/annotation_utils/get_field_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/annotation_utils/get_field_annotations.py -------------------------------------------------------------------------------- /simple_parsing/conflicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/conflicts.py -------------------------------------------------------------------------------- /simple_parsing/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/decorators.py -------------------------------------------------------------------------------- /simple_parsing/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/docstring.py -------------------------------------------------------------------------------- /simple_parsing/help_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/help_formatter.py -------------------------------------------------------------------------------- /simple_parsing/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/__init__.py -------------------------------------------------------------------------------- /simple_parsing/helpers/custom_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/custom_actions.py -------------------------------------------------------------------------------- /simple_parsing/helpers/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/fields.py -------------------------------------------------------------------------------- /simple_parsing/helpers/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/flatten.py -------------------------------------------------------------------------------- /simple_parsing/helpers/hparams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/hparams/__init__.py -------------------------------------------------------------------------------- /simple_parsing/helpers/hparams/hparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/hparams/hparam.py -------------------------------------------------------------------------------- /simple_parsing/helpers/hparams/hyperparameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/hparams/hyperparameters.py -------------------------------------------------------------------------------- /simple_parsing/helpers/hparams/hyperparameters_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/hparams/hyperparameters_test.py -------------------------------------------------------------------------------- /simple_parsing/helpers/hparams/priors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/hparams/priors.py -------------------------------------------------------------------------------- /simple_parsing/helpers/hparams/priors_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/hparams/priors_test.py -------------------------------------------------------------------------------- /simple_parsing/helpers/hparams/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/hparams/utils.py -------------------------------------------------------------------------------- /simple_parsing/helpers/nested_partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/nested_partial.py -------------------------------------------------------------------------------- /simple_parsing/helpers/partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/partial.py -------------------------------------------------------------------------------- /simple_parsing/helpers/serialization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/serialization/__init__.py -------------------------------------------------------------------------------- /simple_parsing/helpers/serialization/decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/serialization/decoding.py -------------------------------------------------------------------------------- /simple_parsing/helpers/serialization/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/serialization/encoding.py -------------------------------------------------------------------------------- /simple_parsing/helpers/serialization/serializable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/serialization/serializable.py -------------------------------------------------------------------------------- /simple_parsing/helpers/serialization/yaml_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/serialization/yaml_serialization.py -------------------------------------------------------------------------------- /simple_parsing/helpers/subgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/helpers/subgroups.py -------------------------------------------------------------------------------- /simple_parsing/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/parsing.py -------------------------------------------------------------------------------- /simple_parsing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_parsing/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/replace.py -------------------------------------------------------------------------------- /simple_parsing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/utils.py -------------------------------------------------------------------------------- /simple_parsing/wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/wrappers/__init__.py -------------------------------------------------------------------------------- /simple_parsing/wrappers/dataclass_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/wrappers/dataclass_wrapper.py -------------------------------------------------------------------------------- /simple_parsing/wrappers/field_metavar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/wrappers/field_metavar.py -------------------------------------------------------------------------------- /simple_parsing/wrappers/field_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/wrappers/field_parsing.py -------------------------------------------------------------------------------- /simple_parsing/wrappers/field_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/wrappers/field_wrapper.py -------------------------------------------------------------------------------- /simple_parsing/wrappers/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/simple_parsing/wrappers/wrapper.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/foo.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/test_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_encoding.py -------------------------------------------------------------------------------- /test/helpers/test_encoding/test_encoding_with_dc_types__json_obj0_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_encoding/test_encoding_with_dc_types__json_obj0_.json -------------------------------------------------------------------------------- /test/helpers/test_encoding/test_encoding_with_dc_types__json_obj1_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_encoding/test_encoding_with_dc_types__json_obj1_.json -------------------------------------------------------------------------------- /test/helpers/test_encoding/test_encoding_with_dc_types__yaml_obj0_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_encoding/test_encoding_with_dc_types__yaml_obj0_.yaml -------------------------------------------------------------------------------- /test/helpers/test_encoding/test_encoding_with_dc_types__yaml_obj1_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_encoding/test_encoding_with_dc_types__yaml_obj1_.yaml -------------------------------------------------------------------------------- /test/helpers/test_enum_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_enum_serialization.py -------------------------------------------------------------------------------- /test/helpers/test_from_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_from_dict.py -------------------------------------------------------------------------------- /test/helpers/test_partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_partial.py -------------------------------------------------------------------------------- /test/helpers/test_partial_postponed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_partial_postponed.py -------------------------------------------------------------------------------- /test/helpers/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_save.py -------------------------------------------------------------------------------- /test/helpers/test_serializable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/helpers/test_serializable.py -------------------------------------------------------------------------------- /test/nesting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/nesting/example_use_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/nesting/example_use_cases.py -------------------------------------------------------------------------------- /test/nesting/test_default_factory_help_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/nesting/test_default_factory_help_strings.py -------------------------------------------------------------------------------- /test/nesting/test_nesting_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/nesting/test_nesting_auto.py -------------------------------------------------------------------------------- /test/nesting/test_nesting_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/nesting/test_nesting_defaults.py -------------------------------------------------------------------------------- /test/nesting/test_nesting_explicit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/nesting/test_nesting_explicit.py -------------------------------------------------------------------------------- /test/nesting/test_nesting_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/nesting/test_nesting_merge.py -------------------------------------------------------------------------------- /test/nesting/test_nesting_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/nesting/test_nesting_simple.py -------------------------------------------------------------------------------- /test/nesting/test_weird_use_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/nesting/test_weird_use_cases.py -------------------------------------------------------------------------------- /test/postponed_annotations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/postponed_annotations/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/postponed_annotations/a.py -------------------------------------------------------------------------------- /test/postponed_annotations/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/postponed_annotations/b.py -------------------------------------------------------------------------------- /test/postponed_annotations/multi_inherits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/postponed_annotations/multi_inherits.py -------------------------------------------------------------------------------- /test/postponed_annotations/overwrite_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/postponed_annotations/overwrite_attribute.py -------------------------------------------------------------------------------- /test/postponed_annotations/overwrite_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/postponed_annotations/overwrite_base.py -------------------------------------------------------------------------------- /test/postponed_annotations/overwrite_subclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/postponed_annotations/overwrite_subclass.py -------------------------------------------------------------------------------- /test/postponed_annotations/test_postponed_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/postponed_annotations/test_postponed_annotations.py -------------------------------------------------------------------------------- /test/test_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_aliases.py -------------------------------------------------------------------------------- /test/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_base.py -------------------------------------------------------------------------------- /test/test_bools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_bools.py -------------------------------------------------------------------------------- /test/test_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_choice.py -------------------------------------------------------------------------------- /test/test_conf_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_conf_path.py -------------------------------------------------------------------------------- /test/test_conflicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_conflicts.py -------------------------------------------------------------------------------- /test/test_custom_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_custom_args.py -------------------------------------------------------------------------------- /test/test_decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_decoding.py -------------------------------------------------------------------------------- /test/test_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_decorator.py -------------------------------------------------------------------------------- /test/test_default_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_default_args.py -------------------------------------------------------------------------------- /test/test_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_docstrings.py -------------------------------------------------------------------------------- /test/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_examples.py -------------------------------------------------------------------------------- /test/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_fields.py -------------------------------------------------------------------------------- /test/test_forward_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_forward_ref.py -------------------------------------------------------------------------------- /test/test_future_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_future_annotations.py -------------------------------------------------------------------------------- /test/test_generation_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_generation_mode.py -------------------------------------------------------------------------------- /test/test_huggingface_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_huggingface_compat.py -------------------------------------------------------------------------------- /test/test_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_inheritance.py -------------------------------------------------------------------------------- /test/test_initvar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_initvar.py -------------------------------------------------------------------------------- /test/test_issue64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_issue64.py -------------------------------------------------------------------------------- /test/test_issue_107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_issue_107.py -------------------------------------------------------------------------------- /test/test_issue_132.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_issue_132.py -------------------------------------------------------------------------------- /test/test_issue_144.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_issue_144.py -------------------------------------------------------------------------------- /test/test_issue_46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_issue_46.py -------------------------------------------------------------------------------- /test/test_issue_48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_issue_48.py -------------------------------------------------------------------------------- /test/test_issue_96.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_issue_96.py -------------------------------------------------------------------------------- /test/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_lists.py -------------------------------------------------------------------------------- /test/test_literal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_literal.py -------------------------------------------------------------------------------- /test/test_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_multiple.py -------------------------------------------------------------------------------- /test/test_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_optional.py -------------------------------------------------------------------------------- /test/test_optional_subparsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_optional_subparsers.py -------------------------------------------------------------------------------- /test/test_optional_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_optional_union.py -------------------------------------------------------------------------------- /test/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_performance.py -------------------------------------------------------------------------------- /test/test_positional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_positional.py -------------------------------------------------------------------------------- /test/test_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_replace.py -------------------------------------------------------------------------------- /test/test_replace_subgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_replace_subgroups.py -------------------------------------------------------------------------------- /test/test_set_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_set_defaults.py -------------------------------------------------------------------------------- /test/test_subgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subgroups.py -------------------------------------------------------------------------------- /test/test_subgroups/test_help[Config---help].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subgroups/test_help[Config---help].md -------------------------------------------------------------------------------- /test/test_subgroups/test_help[Config---model=model_a --help].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subgroups/test_help[Config---model=model_a --help].md -------------------------------------------------------------------------------- /test/test_subgroups/test_help[Config---model=model_b --help].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subgroups/test_help[Config---model=model_b --help].md -------------------------------------------------------------------------------- /test/test_subgroups/test_help[ConfigWithFrozen---conf=even --a 100 --help].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subgroups/test_help[ConfigWithFrozen---conf=even --a 100 --help].md -------------------------------------------------------------------------------- /test/test_subgroups/test_help[ConfigWithFrozen---conf=even --help].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subgroups/test_help[ConfigWithFrozen---conf=even --help].md -------------------------------------------------------------------------------- /test/test_subgroups/test_help[ConfigWithFrozen---conf=odd --a 123 --help].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subgroups/test_help[ConfigWithFrozen---conf=odd --a 123 --help].md -------------------------------------------------------------------------------- /test/test_subgroups/test_help[ConfigWithFrozen---conf=odd --help].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subgroups/test_help[ConfigWithFrozen---conf=odd --help].md -------------------------------------------------------------------------------- /test/test_subgroups/test_help[ConfigWithFrozen---help].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subgroups/test_help[ConfigWithFrozen---help].md -------------------------------------------------------------------------------- /test/test_subparsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_subparsers.py -------------------------------------------------------------------------------- /test/test_suppress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_suppress.py -------------------------------------------------------------------------------- /test/test_tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_tuples.py -------------------------------------------------------------------------------- /test/test_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_union.py -------------------------------------------------------------------------------- /test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/test_utils.py -------------------------------------------------------------------------------- /test/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/testutils.py -------------------------------------------------------------------------------- /test/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/utils/test_flattened.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/utils/test_flattened.py -------------------------------------------------------------------------------- /test/utils/test_mutable_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/utils/test_mutable_field.py -------------------------------------------------------------------------------- /test/utils/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/test/utils/test_yaml.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lebrice/SimpleParsing/HEAD/uv.lock --------------------------------------------------------------------------------