Tworzę cytat z serwera dnia. Czytam opcje z pliku INI, którego tekst znajduje się poniżej:Python - ConfigParser - AttributeError: Instancja ConfigParser nie ma atrybutu "__getitem__"
[Server]
host =
port = 17
[Quotes]
file=quotes.txt
Jednak kiedy używam ConfigParser, to daje mi ten błąd:
Traceback (most recent call last):
File "server.py", line 59, in <module>
Start()
File "server.py", line 55, in Start
configOptions = parseConfig(filename)
File "server.py", line 33, in parseConfig
server = config['Server']
AttributeError: ConfigParser instance has no attribute '__getitem__'
Oto mój kod:
#!/usr/bin/python
from socket import *
from ConfigParser import *
import sys
class serverConf:
port = 17
host = ""
quotefile = ""
def initConfig(filename):
config = ConfigParser()
config['Server'] = {'port': '17', 'host': ''}
config['Quotes'] = {'file': 'quotes.txt'}
with open(filename, 'w') as configfile:
config.write(configfile)
def parseConfig(filename):
configOptions = serverConf()
config = ConfigParser()
config.read(filename)
server = config['Server']
configOptions.port = int(server['port'])
configOptions.host = conifg['Server']['host']
configOptions.quoteFile = config['Quotes']['file']
print "[Info] Read configuration options"
return configOptions
def doInitMessage():
print "Quote Of The Day Server"
print "-----------------------"
print "Version 1.0 By Ian Duncan"
print ""
def Start():
filename = "qotdconf.ini"
configOptions = parseConfig(filename)
print "[Info] Will start server at: " + configOptions.host + ":" + configOptions.port
Start()
Dlaczego pojawia się ten błąd i co mogę zrobić, aby go naprawić?
Wsporniki nie będą działać. Użyj funkcji 'get()'. 'configOptions.host = conifg.get ('Server', 'host')' http://docs.python.org/2/library/configparser.html#examples – M456
Cóż, próbujesz użyć 'config' tak, jakby był słownikiem, a nie jest, jest instancją' ConfigParser' ... – kindall
W przyszłości możesz odwołać się do dokumentacji '' ConfigParser'' (http://docs.python.org /2/library/configparser.html#configparser-objects). –