From f6a0b97ce7d8f31f5a0e70eeee39e5c325f2a416 Mon Sep 17 00:00:00 2001 From: aiyingfeng Date: Sat, 15 Jul 2023 10:09:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=96=E5=BA=97=E7=B2=BE=E9=80=89=E8=81=94?= =?UTF-8?q?=E7=9B=9F=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../extractors/clean_buyin_authorStatData_authorOverviewV2.py | 2 +- .../extractors/clean_buyin_authorStatData_authorProfile.py | 2 +- .../extractors/clean_buyin_authorStatData_seekAuthor.py | 2 +- .../抖店精选联盟数据/extractors/clean_buyin_contact_info.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_authorOverviewV2.py b/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_authorOverviewV2.py index ec033c4..f10109d 100644 --- a/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_authorOverviewV2.py +++ b/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_authorOverviewV2.py @@ -107,7 +107,7 @@ if __name__ == '__main__': while True: sql = f""" select task_id, data, deduplication, update_time from buyin_authorStatData_authorOverviewV2 where - date_sub(CURDATE(),INTERVAL 2 DAY) <= DATE(update_time) LIMIT 1000 OFFSET {offset}; + date_sub(CURDATE(),INTERVAL 20 DAY) <= DATE(update_time) LIMIT 1000 OFFSET {offset}; """ res = qc.eb_supports.query(sql) if not res: diff --git a/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_authorProfile.py b/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_authorProfile.py index d82b1b8..8f41857 100644 --- a/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_authorProfile.py +++ b/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_authorProfile.py @@ -96,7 +96,7 @@ if __name__ == '__main__': while True: sql = f""" select task_id, data, deduplication, update_time from buyin_authorStatData_authorProfile where - date_sub(CURDATE(),INTERVAL 5 DAY) <= DATE(update_time) LIMIT 1000 OFFSET {offset}; + date_sub(CURDATE(),INTERVAL 20 DAY) <= DATE(update_time) LIMIT 1000 OFFSET {offset}; """ res = qc.eb_supports.query(sql) if not res: diff --git a/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_seekAuthor.py b/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_seekAuthor.py index f179bca..cf8cad7 100644 --- a/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_seekAuthor.py +++ b/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_authorStatData_seekAuthor.py @@ -74,7 +74,7 @@ if __name__ == '__main__': while True: sql = f""" select task_id, data, deduplication, update_time from buyin_authorStatData_seekAuthor where - date_sub(CURDATE(),INTERVAL 5 DAY) <= DATE(update_time) LIMIT 1000 OFFSET {offset}; + date_sub(CURDATE(),INTERVAL 20 DAY) <= DATE(update_time) LIMIT 1000 OFFSET {offset}; """ res = qc.eb_supports.query(sql) if not res: diff --git a/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_contact_info.py b/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_contact_info.py index 7ec9904..1ac897e 100644 --- a/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_contact_info.py +++ b/抖音js逆向学习/抖店精选联盟数据/extractors/clean_buyin_contact_info.py @@ -47,7 +47,7 @@ if __name__ == '__main__': while True: sql = f""" select task_id, data, deduplication, update_time from buyin_contact_info where - date_sub(CURDATE(),INTERVAL 2 DAY) <= DATE(update_time) LIMIT 1000 OFFSET {offset}; + date_sub(CURDATE(),INTERVAL 20 DAY) <= DATE(update_time) LIMIT 1000 OFFSET {offset}; """ res = qc.eb_supports.query(sql) if not res: