api.py 625 B

123456789101112131415161718192021222324252627
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. '''
  4. @Contact : liuyuqi.gov@msn.cn
  5. @Time : 2023/05/17 21:17:34
  6. @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
  7. @Desc :
  8. '''
  9. host="https://www.modian.com"
  10. project_info_url = host + "https://zhongchou.modian.com/item"
  11. headers={ "Host": "zhongchou.modian.com",
  12. "Connection": "keep-alive",
  13. "Cache-Control": "max-age=0",
  14. "Upgrade-Insecure-Requests": "1",
  15. "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 \
  16. (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36",
  17. }