Como analisar xml em Python no Google App Engine

Por estaseguinte xml, como faço para buscar o xml e analisá-lo para obter o valor de<age>?

<boardgames>
  <boardgame objectid="13">
  <yearpublished>1995</yearpublished>
  <minplayers>3</minplayers>
  <maxplayers>4</maxplayers>
  <playingtime>90</playingtime>
  <age>10</age>
  <name sortindex="1">Catan</name>
  ...

Atualmente estou tentando:

result = urlfetch.fetch(url=game_url)
xml = ElementTree.fromstring(result.content)

Mas não tenho certeza se estou no caminho certo. Quando tento analisar, recebo erros (acho que porque o xml não é válido).

questionAnswers(2)

yourAnswerToTheQuestion