From 323a3edf7669dd33c3888b193541ad15a991c5f8 Mon Sep 17 00:00:00 2001 From: Julin Date: Tue, 2 Jan 2024 10:27:54 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E6=88=90=E7=89=B9=E5=AE=9A=E6=9C=88?= =?UTF-8?q?=E4=BB=BD=EF=BC=882023=E5=B9=B411=E6=9C=88=E4=BB=BD=EF=BC=89?= =?UTF-8?q?=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/pep-stats-report/main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/pep-stats-report/main.py b/code/pep-stats-report/main.py index 3608766..25aeb4c 100644 --- a/code/pep-stats-report/main.py +++ b/code/pep-stats-report/main.py @@ -565,8 +565,10 @@ if __name__ == '__main__': client = create_clickhouse_client() - last_year, last_month = get_report_year_month() - start_time, end_time = get_report_start_end() + # last_year, last_month = get_report_year_month() + # start_time, end_time = get_report_start_end() + last_year, last_month = 2023, 11 + start_time, end_time = '2023-11-01', '2023-12-01' qs1 = db_helper.querystring_procinst_by_user(start_time, end_time) procinst_by_user = client.execute(qs1)