基于装饰器的python参数类型检查
2021/7/15 20:08:12
本文主要是介绍基于装饰器的python参数类型检查,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
基于装饰器和inspect模块对函数参数类型进行检查。
from functools import wraps from inspect import signature def assert_type(*type_args, **type_kwargs): def dec(fn): sig = signature(fn) bound_types = sig.bind_partial(*type_args, **type_kwargs).arguments @wraps(fn) def wrapper(*args, **kwargs): bound_values = sig.bind(*args, **kwargs) for name, value in bound_values.arguments.items(): if name in bound_types: if not isinstance(value, bound_types[name]): raise TypeError('Argument {} must be {}'.format(name, bound_types[name])) return fn(*args, **kwargs) return wrapper return dec
上面的代码中,使用inspect
中的signature
方法获取了fn
的Signature签名
,然后使用bind_partial
方法创建了(*type_args, **type_kwargs)
到func
参数的映射(也就是一个字典)。
# 使用 @assert_type(a=int, b=int) def add(a, b=1): return a+b
这篇关于基于装饰器的python参数类型检查的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程