feature: DuckDuckGo stock widget extractor #26
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
Mort's
pkg/logic/stock.godoes inline browser scraping to get stock prices from DuckDuckGo. It openshttps://duckduckgo.com/?q=stock+SYMBOL, waits 5 seconds, findsdiv.module__content, clicks time period selectors, waits another 5 seconds, then screenshots the widget.This should be a proper site extractor in go-extractor's
sites/duckduckgopackage.Proposed API
Benefits
Reference
See
mort/pkg/logic/stock.gofor the current implementation.Implemented in PR #44. Added
GetStockQuote()returningStockData(symbol, name, price, change, change%) andGetStockChart()for screenshotting the chart widget with period selection (1D–All). Full mock-based test coverage included.