Created
March 13, 2023 20:29
-
-
Save ezefranca/46c655e42e72162897a86d2a4d3e9271 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nokogiri' | |
require 'open-uri' | |
Encoding.default_external = 'UTF-8' | |
query = params['query'] || 'banana' | |
page = (params['page'] || 0).to_i | |
url = "https://www.elcorteingles.pt/supermercado/pesquisar/" + (page > 0 ? "#{page}" : "") + "?term=#{query}&search=text" | |
document = Nokogiri::HTML(open(url, read_timeout: 30)) | |
{ | |
query: query, | |
url: url, | |
document: document | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment