source_qianlima_history.py 491 B

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on 2024-02-27
  4. ---------
  5. @summary: 千里马历史补采
  6. ---------
  7. @author: Lzz
  8. """
  9. from source_qianlima import history
  10. def main():
  11. history(
  12. date_lst=[
  13. '2024-06-26',
  14. '2024-06-27',
  15. '2024-06-28',
  16. '2024-06-29',
  17. '2024-06-30',
  18. '2024-07-01',
  19. '2024-07-02',
  20. '2024-07-03',
  21. '2024-07-04',
  22. ]
  23. )
  24. if __name__ == '__main__':
  25. main()