Browse Source

开发阅读均值置信度上界代码

luojunhui 3 days ago
parent
commit
cb9b666d46
2 changed files with 5 additions and 2 deletions
  1. 2 1
      requirements.txt
  2. 3 1
      updateAccountV3.py

+ 2 - 1
requirements.txt

@@ -26,4 +26,5 @@ tenacity~=9.0.0
 scikit-learn~=1.6.1
 google~=3.0.0
 cffi~=1.17.1
-lxml~=5.3.2
+lxml~=5.3.2
+scipy~=1.15.2

+ 3 - 1
updateAccountV3.py

@@ -2,6 +2,8 @@ import time
 from datetime import datetime, timedelta
 from argparse import ArgumentParser
 
+from tasks.data_tasks.account_position_read_avg_task import AccountPositionReadAvgTask
+
 
 def main():
     """
@@ -13,7 +15,7 @@ def main():
                         help="Run only once for date in format of %Y-%m-%d. \
                                 If no specified, run as daily jobs.")
     args = parser.parse_args()
-    update_account_read_avg_task = UpdateAccountInfoVersion3()
+    update_account_read_avg_task = AccountPositionReadAvgTask()
     if args.run_date:
         update_account_read_avg_task.do_task_list(dt=args.run_date)
     else: