Remove leftover query file
Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
384ad0beef
commit
e47795baf1
1 changed files with 0 additions and 14 deletions
14
newegg.fql
14
newegg.fql
|
@ -1,14 +0,0 @@
|
||||||
LET first_page = 'https://www.newegg.com/p/pl?N=100007709%208000%204841'
|
|
||||||
LET doc = DOCUMENT(first_page, {driver: "cdp"})
|
|
||||||
|
|
||||||
FOR el IN ELEMENTS(doc, "div .item-cell")
|
|
||||||
LET a = ELEMENT(el, "div .item-title")
|
|
||||||
LET price = TO_FLOAT(SUBSTITUTE(SUBSTITUTE(TRIM(INNER_TEXT(ELEMENT(el, "div .price-current"))), '$', ''), ',', ''))
|
|
||||||
LET available = !ELEMENT_EXISTS(el, "div .item-promo")
|
|
||||||
RETURN {
|
|
||||||
name: TRIM(LEFT(INNER_TEXT(a), 100)),
|
|
||||||
url: a.attributes.href,
|
|
||||||
price: price,
|
|
||||||
price_currency: "USD",
|
|
||||||
available: available,
|
|
||||||
}
|
|
Reference in a new issue