Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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()
 
PREVIOUS NEXT
Tagged: #calling #default #Loader #Please #read #full
ADD COMMENT
Topic
Name
8+6 =