Code challenge solution #374
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Solution
I built a small carousel scraper using
Nokogiriand regex. It finds the best Knowledge Graph carousel container by looking fordata-attridsections and links that includestick=, then extracts fields for each item. I prioritised semantic HTML (role,aria-label,alt,title) over class names. It also skips "show more" items and only includes images already present in the HTML (data:image,encrypted-tbn, orknowledgecardicons).The output is a hash where the key matches the search results selected tab (e.g.,
artworks,cast,albums). If no tab is selected, it defaults toresults.Structure
lib/carousel_scraper.rb: Orchestrates the extraction and chooses the correct carousel scope.lib/carousel_item_extractor.rb: Extracts name, extensions, link, and image from a single item link.I tested against 3 other result pages to find common patterns:
How to run
Install dependencies:
Run with the default Van Gogh paintings HTML (outputs to
files/van-gogh-paintings-expected-array.json):Run with a specific HTML file (outputs JSON to the same directory):
Run the tests: