yaml.load()时总是出现警告:YAMLLoadWarning: calling yaml.load() without Loader=...

警告提示:YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.

YAML 5.1版本后弃用了yaml.load(file)这个用法,因为觉得很不安全,5.1版本之后就修改了需要指定Loader,通过默认加载​​器(FullLoader)禁止执行任意函数,该load函数也变得更加安全

示例:

yaml.load(input, Loader=yaml.FullLoader)

还有其他几种Loader,详情可以参考:

Github原文地址:https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation#footnotes

原文地址:https://www.cnblogs.com/xianyulouie/p/11041778.html