elcolumbio / mlrepricer

Explore pricing data. Share insights and models. Build environment for repricer.
Other
9 stars 3 forks source link

mapping asin to seller sku #4

Closed elcolumbio closed 6 years ago

elcolumbio commented 6 years ago

What we make work: we prefilter by: item-condition == 11 -> new

We can match an sku if you have at most one listing with FBA and one with shipped by yourself. That's reasonable since thats how you should list on amazon.

For each asin we do a groupby on the feature fulfillment-channel

elcolumbio commented 6 years ago

Implemented by the report '_GET_MERCHANT_LISTINGSDATA'.

elcolumbio commented 6 years ago

Will try to get something done now. Solve this with threading. Should be easy.

elcolumbio commented 6 years ago

Solved it with the structure: tuple( list(), list()).
Where the list can consists of multiple skus but they shouldn't. The tuple has the format: (prime_offer, nonprime_offer) See above. We just take the first item of the list.