Make shell argument parsers from type hints
Project description
infer-parser
infer-parser is a Python library for making shell argument parsers from type hints.
Install
pip install infer-parser
Example
import typing as t
from infer_parser import make_parser
parse = make_parser(t.Optional[int])
assert parse(["5"]) == 5
assert parse(["-11"]) == -11
assert parse([""]) is None
assert parse(["None"]) is None
try:
parse(["12.13"])
except ValueError:
print("not an Optional[int]")
parse_tuple = make_parser(tuple[float, ...])
assert parse_tuple(["1.5"]) == (1.5,)
assert parse_tuple(["0.0", "4.2", "-1"]) == (0.0, 4.2, -1.0)
assert parse_tuple([]) == ()
try:
parse(["Hello, world!"])
except ValueError:
print("not a tuple[float, ...]")
Limitations
infer-parser cannot always infer a parser.
import typing as t
from infer_parser import make_parser
try:
make_parser(t.Callable[..., int])
except TypeError:
print("not supported")
License
MIT.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
infer_parser-0.1.2.tar.gz
(7.5 kB
view hashes)
Built Distribution
Close
Hashes for infer_parser-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ec67505547c48ed730d68c5e6c7b8b1863ca0e616ae6ca29c9c2a01430c52f8 |
|
MD5 | caf498d5bb34feb7e41f52c129fafd15 |
|
BLAKE2b-256 | 14ca41f5cedf9a0e3cd4d73709319afeee93340ae3e928a470d01b0914774332 |