-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
102 lines (86 loc) · 3.37 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import json
import urllib
import urllib.request
import hashlib
import base64
import urllib.parse
# 此处为快递鸟官网申请的帐号和密码
APP_id = "xxxxxxx" #更换成自己的id
APP_key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx" #更换成自己的key
def encrypt(logistic_code, app_key):
"""数据内容签名:把(请求内容(未编码)+AppKey)进行MD5加密,然后Base64编码"""
m = hashlib.md5()
m.update((logistic_code+app_key).encode("utf8"))
encode_sign = m.hexdigest()
data_sign = base64.b64encode(encode_sign.encode(encoding='utf-8'))
return data_sign
def send_post(url, data):
"""发送post请求"""
post_data = urllib.parse.urlencode(data).encode('utf-8')
# 设置请求头
header = {
"Accept": "application/x-www-form-urlencoded;charset=utf-8",
"Accept-Encoding": "utf-8"
}
req = urllib.request.Request(url, post_data, header)
get_data = (urllib.request.urlopen(req).read().decode('utf-8'))
return get_data
def get_company(logistic_code, app_id, app_key, url):
"""获取对应快递单号的快递公司代码和名称"""
data1 = {'LogisticCode': logistic_code}
d1 = json.dumps(data1, sort_keys=True)
data_sign = encrypt(d1, app_key)
post_data = {
'RequestData': d1,
'EBusinessID': app_id,
'RequestType': '2002', # 单号识别接口编码
'DataType': '2',
'DataSign': data_sign.decode()
}
json_data = send_post(url, post_data)
sort_data = json.loads(json_data)
return sort_data
def get_traces(logistic_code, shipper_code, app_id, app_key, url):
"""查询接口支持按照运单号查询(单个查询)"""
data1 = {'LogisticCode': logistic_code, 'ShipperCode': shipper_code}
d1 = json.dumps(data1, sort_keys=True)
data_sign = encrypt(d1, app_key)
post_data = {
'RequestData': d1,
'EBusinessID': app_id,
'RequestType': '1002', # 即时查询接口编码
'DataType': '2',
'DataSign': data_sign.decode()
}
json_data = send_post(url, post_data)
sort_data = json.loads(json_data)
return sort_data
def recognise(express_code):
express_code = express_code.replace('/test ','')
"""输出数据"""
url = 'http://api.kdniao.com/Ebusiness/EbusinessOrderHandle.aspx'
data = get_company(express_code, APP_id, APP_key, url)
print(data)
if not data['Shippers']:
print("未查到该快递信息,请检查快递单号是否有误!")
else:
trace_data = get_traces(express_code, data['Shippers'][0]['ShipperCode'], APP_id, APP_key, url)
print(trace_data)
if trace_data['Success'] == "false" or not trace_data['Traces']:
print("未查询到该快递物流轨迹!")
else:
str_state = "无轨迹"
if trace_data['State'] == '1':
str_state = '已揽收'
if trace_data['State'] == '2':
str_state = "在途中"
if trace_data['State'] == '3':
str_state = "已签收"
print("目前状态: "+str_state)
trace_data = trace_data['Traces']
for item in trace_data:
print(str(trace_data.index(item))+":", item['AcceptTime'], item['AcceptStation'])
print("\n")
return
if __name__ == '__main__':
recognise('2423553456456')