【发布时间】:2021-10-15 17:49:16
【问题描述】:
点击有click.ParamType,用于定义自定义参数类型,但它不适用于typer(下面的示例sn-p)
我想使用我自己的日期时间格式,例如:今天 %H:%M、%M:%H(自动将日期用作今天)。 Typer 已经允许设置,custom datetime formats 但它不包括我的用例。
这是来自click docs 的示例,我尝试使用 typer。
class BasedIntParamType(click.ParamType):
name = "integer"
def convert(self, value, param, ctx):
if isinstance(value, int):
return value
try:
if value[:2].lower() == "0x":
return int(value[2:], 16)
elif value[:1] == "0":
return int(value, 8)
return int(value, 10)
except ValueError:
self.fail(f"{value!r} is not a valid integer", param, ctx)
BASED_INT = BasedIntParamType()
def main(based_int: BASED_INT):
print(based_int)
if __name__=="__main__":
typer.run(main)
它给出了这个错误:
Traceback (most recent call last):
File "/home/yashrathi/test.py", line 26, in <module>
typer.run(main)
File "/home/yashrathi/.local/lib/python3.9/site-packages/typer/main.py", line 859, in run
app()
File "/home/yashrathi/.local/lib/python3.9/site-packages/typer/main.py", line 214, in __call__
return get_command(self)(*args, **kwargs)
File "/home/yashrathi/.local/lib/python3.9/site-packages/typer/main.py", line 239, in get_command
click_command = get_command_from_info(typer_instance.registered_commands[0])
File "/home/yashrathi/.local/lib/python3.9/site-packages/typer/main.py", line 423, in get_command_from_info
) = get_params_convertors_ctx_param_name_from_function(command_info.callback)
File "/home/yashrathi/.local/lib/python3.9/site-packages/typer/main.py", line 404, in get_params_convertors_ctx_param_name_from_function
click_param, convertor = get_click_param(param)
File "/home/yashrathi/.local/lib/python3.9/site-packages/typer/main.py", line 656, in get_click_param
parameter_type = get_click_type(
File "/home/yashrathi/.local/lib/python3.9/site-packages/typer/main.py", line 587, in get_click_type
raise RuntimeError(f"Type not yet supported: {annotation}") # pragma no cover
RuntimeError: Type not yet supported: <__main__.BasedIntParamType object at 0x7f7295822fd0>
typer.main.get_click_type,似乎与自定义点击类型不兼容。但是click知道如何处理click.ParamType,typer不需要将其转换为click类型。
实现我自己的日期时间格式的最佳方法是什么?
- 创建一个继承自
datetime并覆盖strptime以适应我的用例的新类会不会很好? - 这可以由 typer 自己实现吗?因为通过点击很容易做到这一点
谢谢
【问题讨论】:
标签: python python-3.x command-line-interface python-click typer