vote up 1 vote down star

I've got a piece of code which contains a for loop to draw things from an xml file;

   for evoNode in node.getElementsByTagName('evolution'):
      evoName      = getText(evoNode.getElementsByTagName("type")[0].childNodes)
      evoId      = getText(evoNode.getElementsByTagName("typeid")[0].childNodes)
      evoLevel   = getText(evoNode.getElementsByTagName("level")[0].childNodes)
      evoCost      = getText(evoNode.getElementsByTagName("costperlevel")[0].childNodes)

      evolutions.append("%s x %s" % (evoLevel, evoName))

currently it outputs into a list called evolutions as it says in the last line of that code, for this and several other for functions with very similar functionality I need it to output into a class instead.

class evolutions:
    def __init__(self, evoName, evoId, evoLevel, evoCost)
        self.evoName = evoName
        self.evoId = evoId
        self.evoLevel = evoLevel
        self.evoCost = evoCost

Can someone show me how to create a series of instances of this class, each of which is a response from that for function (or come up with a ore practical solution, this one doesn't really need the class but one of the others really does)? thanks.

flag

a note about style, you should always name classes with camel case starting with a capital letter, and they shouldn't be plural. It should be: class Evolution – Soviut Jan 13 at 20:39
You can also remove the 'evo' prefix from the class fields, they can be inferred from the context of the class. Saves typing. :) – Carlos Crasborn Jan 13 at 20:50
Don't Repeat Yourself (DRY): get = lambda name: getText(evoNode.getElementsByTagName(name)[0].childNodes) – J.F. Sebastian Aug 30 at 12:10

2 Answers

vote up 3 vote down check
for evoNode in node.getElementsByTagName('evolution'):
  evoName      = getText(evoNode.getElementsByTagName("type")[0].childNodes)
  evoId      = getText(evoNode.getElementsByTagName("typeid")[0].childNodes)
  evoLevel   = getText(evoNode.getElementsByTagName("level")[0].childNodes)
  evoCost      = getText(evoNode.getElementsByTagName("costperlevel")[0].childNodes)

  temporaryEvo = Evolutions(evoName, evoId, evoLevel, evoCost)
  evolutionList.append(temporaryEvo)

  # Or you can go with the 1 liner
  evolutionList.append(Evolutions(evoName, evoId, evoLevel, evoCost))

I renamed your list because it shared the same name as your class and was confusing.

link|flag
Could you also rename their class to be Uppercase, like Proper Class Names Should Be? – S.Lott Jan 13 at 20:38
I thought that was just me that put classes as Uppercase for the first letter. Or do you mean all letters? – Teifion Jan 13 at 20:41
vote up 4 vote down

A list comprehension might be a little cleaner. I'd also move the parsing logic to the constructor to clean up the implemenation:

class Evolution:
    def __init__(self, node):
        self.node = node
        self.type = property("type")
        self.typeid = property("typeid")
        self.level = property("level")
        self.costperlevel = property("costperlevel")
    def property(self, prop):
        return getText(self.node.getElementsByTagName(prop)[0].childNodes)

evolutionList = [Evolution(evoNode) for evoNode in node.getElementsByTagName('evolution')]

Alternatively, you could use map:

evolutionList = map(Evolution, node.getElementsByTagName('evolution'))
link|flag
property is a built-in function in Python. It is a bad style to use it the way you did. docs.python.org/library/functions.html#property/… – J.F. Sebastian Aug 30 at 12:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.