0

我需要从网上获取一个 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。对不起,如果这是一个愚蠢的问题。

4

1 回答 1

2

我相信您想要,如果不是模块yaml.load(fileToBeParsed),我建议您查看。urllib2.urlopenrequests

于 2012-07-21T10:55:21.997 回答