FB Marketplace crawler

This commit is contained in:
Shariar Imtiaz 2024-02-05 14:56:09 +04:00
parent 65e49049f6
commit 7e46c28355
1 changed files with 1 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class FbMarketplaceProductInfo:
table = f"""{self.config.get('crawler_schema')}.{self.config.get('tracker_tab')}"""
sql = f"""
SELECT * FROM {table} where flag=1 limit 1
SELECT * FROM {table} where flag=0
"""
print("SQL is: {}".format(sql))
self.cur.execute(sql)
@ -61,7 +61,6 @@ class FbMarketplaceProductInfo:
self.cur.execute(sql)
except Exception as e:
logging.info(e)
pass
time.sleep(random.randint(5,20))