FB Marketplace crawler
This commit is contained in:
parent
70ded552b7
commit
65e49049f6
|
@ -96,7 +96,7 @@ class fb_db_writer:
|
||||||
update {self.config.get('crawler_schema')}.{self.config.get('product_tab')} set rce_source_id={data['rce_source_id']}, product_page_url='{data['product_page_url']}',
|
update {self.config.get('crawler_schema')}.{self.config.get('product_tab')} set rce_source_id={data['rce_source_id']}, product_page_url='{data['product_page_url']}',
|
||||||
product_page_url_hash='{data['product_page_url_hash']}',rce_category_id={data['rce_category_id']},rce_store_id={data['rce_store_id']},rce_source_product_name='{data['rce_source_product_name']}',
|
product_page_url_hash='{data['product_page_url_hash']}',rce_category_id={data['rce_category_id']},rce_store_id={data['rce_store_id']},rce_source_product_name='{data['rce_source_product_name']}',
|
||||||
product_images='{data['product_images']}',product_description='{data['product_description']}',product_price_min={data['product_price_min']},product_price_max={data['product_price_max']},
|
product_images='{data['product_images']}',product_description='{data['product_description']}',product_price_min={data['product_price_min']},product_price_max={data['product_price_max']},
|
||||||
ships_from='{data['ships_from']}' where product_page_url_hash='{data['product_page_url_hash']}'
|
ships_from='{data['ships_from']}', updatedat=GETDATE() where product_page_url_hash='{data['product_page_url_hash']}'
|
||||||
"""
|
"""
|
||||||
logging.info(sql)
|
logging.info(sql)
|
||||||
self.cur.execute(sql)
|
self.cur.execute(sql)
|
||||||
|
@ -216,7 +216,7 @@ class fb_db_writer:
|
||||||
sql = f"""
|
sql = f"""
|
||||||
update {self.config.get('crawler_schema')}.{self.config.get('reseller_store_tab')} set rce_source_id = {data['rce_source_id']},
|
update {self.config.get('crawler_schema')}.{self.config.get('reseller_store_tab')} set rce_source_id = {data['rce_source_id']},
|
||||||
store_page_url = '{data['store_page_url']}', store_page_url_hash = '{data['store_page_url_hash']}', store_location = '{data['store_location']}',
|
store_page_url = '{data['store_page_url']}', store_page_url_hash = '{data['store_page_url_hash']}', store_location = '{data['store_location']}',
|
||||||
rce_reseller_id = {data['rce_reseller_id']}, updatedat=GETDATE()
|
rce_reseller_id = {data['rce_reseller_id']}, updatedat=GETDATE() where store_page_url_hash = '{data['store_page_url_hash']}'
|
||||||
"""
|
"""
|
||||||
logging.info(sql)
|
logging.info(sql)
|
||||||
self.cur.execute(sql)
|
self.cur.execute(sql)
|
||||||
|
|
Loading…
Reference in New Issue