Expose product title through amazon crawler

This commit is contained in:
Felipe Martín 2015-09-22 20:12:23 +02:00
parent 9ee12f7be3
commit 3e3d12c0c5
2 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class Command(BaseCommand):
item_id=product['shop_product_id'],
shop__flag_code=region[0]
)
amiibo_shop.shop_name = product.title
amiibo_shop.shop_name = product['title']
amiibo_shop.update_price(product['price'], product['currency'])
def handle(self, *args, **kwargs):

View File

@ -45,6 +45,7 @@ class AmazonBaseCrawler(object):
'shop_product_id': product.asin,
'price': price,
'currency': currency,
'title': product.title,
})
sleep(1)