| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2023/05/17 21:17:34
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc : 摩点API配置
- '''
- host = "https://www.modian.com"
- api_host = "https://zhongchou.modian.com"
- project_info_url = api_host + "/item"
- headers = {
- "Host": "zhongchou.modian.com",
- "Connection": "keep-alive",
- "Cache-Control": "max-age=0",
- "Upgrade-Insecure-Requests": "1",
- "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 "
- "(KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36",
- "Accept": "application/json, text/plain, */*",
- "Accept-Language": "zh-CN,zh;q=0.9,en;q=0.8",
- "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
- "X-Requested-With": "XMLHttpRequest",
- }
- api_endpoints = {
- "login": host + "/login",
- "user_info": host + "/user/info",
- "check_in": host + "/user/checkin",
- "check_in_status": host + "/user/checkin/status",
- "project_list": api_host + "/item/list",
- "project_detail": api_host + "/item/{project_id}",
- "project_support": api_host + "/item/support",
- "project_comments": api_host + "/item/{project_id}/comments",
- }
|