Skip to content

Instantly share code, notes, and snippets.

@odanado
Created May 19, 2014 14:27
Show Gist options
  • Save odanado/32f38cede3108f28b6e5 to your computer and use it in GitHub Desktop.
Save odanado/32f38cede3108f28b6e5 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
require 'nokogiri'
require 'open-uri'
def hoge(index)
uri = "http://www.serebii.net/pokedex-xy/#{index}.shtml"
doc = Nokogiri::HTML(open(uri))
data = doc.xpath('//*/text()[contains(.,"Base Stats")]/../../td/text()').to_a
puts data
end
hoge("445")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment