-
Notifications
You must be signed in to change notification settings - Fork 85
Description
Hi I'm a keepa user a wanted to do a query as below:
api = keepa.Keepa('################################################')
product_params = {
"current_SALES_gte": 200,
"current_SALES_lte": 80000,
"salesRankDrops30_gte": 15,
"salesRankDrops90_gte": 25,
"current_BUY_BOX_SHIPPING_gte": 2000,
"buyBoxSellerId": ['A2LKZRSRNM40F5','APZQDU58R6UG9'],
"current_AMAZON_gte": -1,
"current_AMAZON_lte": -1,
"outOfStockPercentage90_gte": 50,
"offerCountFBA_gte": 3,
"productType": [
"0" ],
"sort": [ [ "current_SALES", "asc" ] ] }
asins = api.product_finder(product_params)
so the "buyBoxSellerId" filter isn't quiet working as without it the query works fine. When I pass in a single seller id it works as well. But when I pass in an array of strings, It doesn't return anything. It should work as it works in keepa product finder in UI. Am I missing something here?