123456789101112131415161718 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2023/12/03 03:09:35
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc : enter point
- '''
- # from crawl_sse import Sse
- from crawl_sse import Cninfo
- if __name__=='__main__':
- # sse = Sse()
- # sse.crawl()
- cninfo =Cninfo()
- cninfo.download()
|