Answers for "lling yaml.load() without loader=... is deprecated, as the default loader is unsafe. please read https://msg.pyyaml.org/load for full details.}"

2

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

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

import yaml

f = open(filaname_path, 'r')   
yaml.load(f, Loader=yaml.FullLoader)
f.close()
Posted by: Guest on August-10-2020

Python Answers by Framework

Browse Popular Code Answers by Language