如何在Python中通过HTTP读取配置文件?

时间:2015-12-21 18:10:31

标签: python python-3.x configuration-files

我希望能够做到这样的事情(Python 3):

config = configparser.ConfigParser()

config.read('http://example.com/myconfig.cfg')

在Python中通过HTTP读取配置文件的最佳方法是什么?如果有更好的选择,我就不会与configparser结婚。

1 个答案:

答案 0 :(得分:0)

您可以使用urllib2通过HTTP读取文件并随身携带config.readfp

import urllib2

config = configparser.ConfigParser()

r = urllib2.urlopen("http://example.com/myconfig.cfg")
config.readfp(r)