Skip to content

Instantly share code, notes, and snippets.

@juque
Created December 31, 2020 19:34
Show Gist options
  • Select an option

  • Save juque/fd742df554dcb4495aa9878bef5846c3 to your computer and use it in GitHub Desktop.

Select an option

Save juque/fd742df554dcb4495aa9878bef5846c3 to your computer and use it in GitHub Desktop.
require 'http'
require 'nokogiri'
url = "https://www.rae.es/noticia/las-palabras-del-ano-en-el-universo-hispanohablante"
content = HTTP.follow.get url
doc = Nokogiri::HTML content.to_s
rae2020 = doc.css('.bloque-texto a[target="_blank"]')
puts rae2020.select { |x| x.parent.children.count < 2}
.each {|x| x.content }.join(" / ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment