-
Notifications
You must be signed in to change notification settings - Fork 29
/
scraper.rb
executable file
·50 lines (38 loc) · 1.25 KB
/
scraper.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env ruby
require "open-uri"
require "json"
require "nokogiri"
def titleize(string)
string.gsub("Ñ", "ñ").gsub(/\b([A-ZÁÉÍÓÚ])([A-ZÁÉÍÓÚñ]+)/) { "#{$1}#{$2.downcase}" }
end
class Ciudad
attr_reader :id, :nombre
def initialize(id, nombre)
@id, @nombre = id, titleize(nombre)
end
def to_h
{ id: id, nombre: nombre }
end
end
class Provincia
attr_reader :id, :nombre, :ciudades
attr_writer :ciudades
def initialize(id, nombre)
@id, @nombre = id.to_i, titleize(nombre)
@ciudades = []
end
def to_h
{ id: id, nombre: nombre, ciudades: ciudades.map(&:to_h) }
end
end
doc = Nokogiri::HTML(open("http://www.migraciones.gov.ar/tarjeta/index2TES.php?idioma=ESPA&tar=TES"))
provincias = doc.css("#provincias option").reject { |option| option["value"].empty? }
provincias.map! { |option| Provincia.new(option["value"].to_i, option.text) }
provincias.each do |provincia|
doc = Nokogiri::HTML(open("http://www.migraciones.gov.ar/tarjeta/ajaxLocalidades.php?provincia=#{provincia.id}"))
ciudades = doc.css("option")
provincia.ciudades = ciudades.map { |option| Ciudad.new(option["value"], option.text) }
end
File.open("ciudades-argentinas.json", "w") do |f|
f << JSON.generate(provincias.map!(&:to_h))
end