1234567891011121314151617181920212223242526272829 |
- # -*- coding: utf-8 -*-
- """
- Created on 2024-02-27
- ---------
- @summary: 千里马历史补采
- ---------
- @author: Lzz
- """
- from source_qianlima import history
- def main():
- history(
- date_lst=[
- '2024-06-26',
- '2024-06-27',
- '2024-06-28',
- '2024-06-29',
- '2024-06-30',
- '2024-07-01',
- '2024-07-02',
- '2024-07-03',
- '2024-07-04',
- ]
- )
- if __name__ == '__main__':
- main()
|