|
@@ -1839,6 +1839,41 @@ class APIMgr():
|
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/jybx/base/newest",headers = headers ,json = json)
|
|
|
return response
|
|
|
|
|
|
+ #品牌官网-关于剑鱼-公司介绍里的网站收录
|
|
|
+ def web_include(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ json = {
|
|
|
+ "bid": 2.5,
|
|
|
+ "bidDayUpdate": 21,
|
|
|
+ "bidDayUpdateUnit": "万",
|
|
|
+ "bidDayUpdateUnitAppend": "+",
|
|
|
+ "bidField": 80,
|
|
|
+ "bidFieldUnit": "",
|
|
|
+ "bidFieldUnitAppend": "+",
|
|
|
+ "bidUnit": "亿",
|
|
|
+ "bidUnitAppend": "+",
|
|
|
+ "buyer": 315,
|
|
|
+ "buyerUnit": "万",
|
|
|
+ "buyerUnitAppend": "+",
|
|
|
+ "day": 1,
|
|
|
+ "ent": 3.7,
|
|
|
+ "entUnit": "亿",
|
|
|
+ "entUnitAppend": "+",
|
|
|
+ "fieldAccuracy": 99,
|
|
|
+ "fieldAccuracyUnit": "%",
|
|
|
+ "fieldAccuracyUnitAppend": "+",
|
|
|
+ "month": 3,
|
|
|
+ "project": 1.2,
|
|
|
+ "projectUnit": "亿",
|
|
|
+ "projectUnitAppend": "+",
|
|
|
+ "push": 702,
|
|
|
+ "pushUnit": "亿",
|
|
|
+ "pushUnitAppend": "+",
|
|
|
+ "year": 2025
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/jybx/base/included",headers = headers ,json = json)
|
|
|
+ return response
|
|
|
+
|
|
|
|
|
|
apimgr = APIMgr()
|
|
|
|