Lephisto/utils/resedit/commodity.py

23 lines
511 B
Python

#!/usr/bin/env python
import data
class Commodities:
def __init__(self):
self.commodities = {}
self.commoditiesXML = "../../dat/commodity.xml"
def loadCommodities(self, xmlfile=None):
if xmlfile == None:
xmlFile = self.commoditiesXML
self.commodities = data.load(xmlfile, "commodity", True)
def data(self):
return self.commodities
def debug(self):
print "---Commodities--------------------"
print self.commodities
print "----------------------------------"