Skip to content

Commit

Permalink
Adding more watches
Browse files Browse the repository at this point in the history
  • Loading branch information
garland committed Apr 25, 2024
1 parent 265c500 commit 4f8247f
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 1 deletion.
4 changes: 4 additions & 0 deletions internet-item-price/alert_on_low_price/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Alert on Low Price

# Use the Google SERG to refine your search
https://serpapi.com/playground?engine=google_shopping&q=Aqara+water+leak+sensor+3+pack&location=United+States&gl=us&hl=en

# How it works
This will use the Google Search Shopping API to search for an items and alert on the lowest prices.

The Google Search Shopping API needs some post filtering. Here is the pricess.
Expand Down
54 changes: 53 additions & 1 deletion internet-item-price/alert_on_low_price/search_items_gar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,56 @@ search_items:
## Sometime if the price is too low, it is a scam or just not the product you want
## You can set this to zeror/0 to disable this filter
low: 2
high: 7
high: 7
- item: dell pny 4060 16gb
## additional_title_filters are filters for the title after the search results has
## been returned. Sometimes google returns items that are not the exact match.
## The list here are "ANDs", all of them has to be found in the title of the
## resutlts.
additional_title_filters:
- pny
- 16gb
- "4060"
not_from_these_sellers:
- AliExpress.com
- ebay
price:
## If the price is lower than the "low", then filter it out
## Sometime if the price is too low, it is a scam or just not the product you want
## You can set this to zeror/0 to disable this filter
low: 300
high: 399
- item: dell msi 4070
## additional_title_filters are filters for the title after the search results has
## been returned. Sometimes google returns items that are not the exact match.
## The list here are "ANDs", all of them has to be found in the title of the
## resutlts.
additional_title_filters:
- msi
- "4070"
not_from_these_sellers:
- AliExpress.com
- ebay
price:
## If the price is lower than the "low", then filter it out
## Sometime if the price is too low, it is a scam or just not the product you want
## You can set this to zeror/0 to disable this filter
low: 300
high: 499
- item: dell pny 4070
## additional_title_filters are filters for the title after the search results has
## been returned. Sometimes google returns items that are not the exact match.
## The list here are "ANDs", all of them has to be found in the title of the
## resutlts.
additional_title_filters:
- pny
- "4070"
not_from_these_sellers:
- AliExpress.com
- ebay
price:
## If the price is lower than the "low", then filter it out
## Sometime if the price is too low, it is a scam or just not the product you want
## You can set this to zeror/0 to disable this filter
low: 300
high: 499

0 comments on commit 4f8247f

Please sign in to comment.