我需要从网上获取一个 YAML 文件并使用 PyYAMl 对其进行解析,但我似乎找不到解决方法。
import urllib
import yaml
fileToBeParsed = urllib.urlopen("http://website.com/file.yml")
pythonObject = yaml.open(fileToBeParsed)
print pythonObject
运行时产生的错误是:AttributeError: 'module' object has no attribute 'open'
如果有帮助,我正在使用 python 2。对不起,如果这是一个愚蠢的问题。