我希望能够做到这样的事情(Python 3):
config = configparser.ConfigParser()
config.read('http://example.com/myconfig.cfg')
在Python中通过HTTP读取配置文件的最佳方法是什么?如果有更好的选择,我就不会与configparser
结婚。
答案 0 :(得分:0)
您可以使用urllib2
通过HTTP读取文件并随身携带config.readfp
。
import urllib2
config = configparser.ConfigParser()
r = urllib2.urlopen("http://example.com/myconfig.cfg")
config.readfp(r)