Skip to content

Instantly share code, notes, and snippets.

@flavorjones
Forked from alexshk/gist:448105
Created June 22, 2010 12:43
Show Gist options
  • Save flavorjones/448415 to your computer and use it in GitHub Desktop.
Save flavorjones/448415 to your computer and use it in GitHub Desktop.
xml file:
---
<match>
<id>1053</id>
<name>Южная Африка - Мексика</name>
<start>2010-06-11 18:00:00</start>
<status>finished</status>
<stage>Групповой этап</stage>
<stadium>Соккер Сити</stadium>
<judge>Равшан Ирматов</judge>
<url>http://fifa2010.rambler.ru/xml/schedule.xml?id=1053</url>
<linesmen>Рафаэль Ильясов (Узбекистан), Бахадыр Кочкаров (Киргизия)</linesmen>
<score>1:1</score>
<teams>
<team>
<id>665</id>
<name>Южная Африка</name>
<url>http://fifa2010.rambler.ru/xml/teams.xml?id=665</url>
<enclosure url='http://roteiro.park.rambler.ru/images/team/2010/05/21/1275385577_97137.234x181.jpg' type='image/jpeg' title='flag_234x181'/>
<enclosure url='http://roteiro.park.rambler.ru/images/team/2010/05/21/1275385577_97137.117x91.jpg' type='image/jpeg' title='flag_117x91'/>
<enclosure url='http://roteiro.park.rambler.ru/images/team/2010/05/21/1275385578_82514.360x279.jpg' type='image/jpeg' title='flag_360x279'/>
<enclosure url='http://roteiro.park.rambler.ru/images/team/2010/05/21/1275385578_82514.180x140.jpg' type='image/jpeg' title='flag_180x140'/>
<score>1</score>
</team>
<team>
<id>668</id>
<name>Мексика</name>
<url>http://fifa2010.rambler.ru/xml/teams.xml?id=668</url>
<enclosure url='http://roteiro.park.rambler.ru/images/team/2010/05/21/1275385555_23216.234x181.jpg' type='image/jpeg' title='flag_234x181'/>
<enclosure url='http://roteiro.park.rambler.ru/images/team/2010/05/21/1275385555_23216.117x91.jpg' type='image/jpeg' title='flag_117x91'/>
<enclosure url='http://roteiro.park.rambler.ru/images/team/2010/05/21/1275385555_54978.360x279.jpg' type='image/jpeg' title='flag_360x279'/>
<enclosure url='http://roteiro.park.rambler.ru/images/team/2010/05/21/1275385555_54978.180x140.jpg' type='image/jpeg' title='flag_180x140'/>
<score>1</score>
</team>
</teams>
<prev_url>http://fifa2010.rambler.ru/xml/teams.xml?id=4109</prev_url>
<next_url>http://fifa2010.rambler.ru/xml/teams.xml?id=1054</next_url>
</match>
code:
---
link = 'http://something/xml_file_above.xml'
@data = Nokogiri::XML(open(link).read)
...
score = @data.at_css('score').content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment