I need to adapt this sample scraping app in order to fetch a few queries plus look into the linked .css files for the same query: This change require someone, who has knowledge in Ruby and Python.
require 'zillabyte'
app = Zillabyte.app("hello_world_app")
.source("web_pages")
.each{ |page|
if page['html'].include? ".jpg" # world
emit :url => page['url']
end
}
.sink{
name "has-jpg"
column "url", :string
}
I'll send you more details and the exact flow I need, there's also complete documentation for the app.
I need to adapt this sample scraping app in order to fetch a few queries plus look into the linked .css files for the same query: This change require someone, who has knowledge in Ruby and Python.
require 'zillabyte'
app = Zillabyte.app("hello_world_app")
.source("web_pages")
.each{ |page|
if page['html'].include? ".jpg" # world
emit :url => page['url']
end
}
.sink{
name "has-jpg"
column "url", :string
}
I'll send you more details and the exact flow I need, there's also complete documentation for the app.