Return all supported parser names including custom registered parsers.
()
| 2486 | |
| 2487 | |
| 2488 | def get_supported_parsers() -> tuple: |
| 2489 | """Return all supported parser names including custom registered parsers.""" |
| 2490 | return SUPPORTED_PARSERS + tuple(_CUSTOM_PARSERS.keys()) |
| 2491 | |
| 2492 | |
| 2493 | def get_parser(parser_type: str) -> Parser: |