-
Notifications
You must be signed in to change notification settings - Fork 1
/
cloudUpload.py
54 lines (51 loc) · 1.53 KB
/
cloudUpload.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
# !/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import json
import requests
import random
from getToken import *
from requests_toolbelt import MultipartEncoder
def postCloudFile(filepath,cloudPath,taskId):
j = 10
id = []
id = ''.join(str(i) for i in random.sample(range(0,11),j)) # sample(seq, n) 从序列seq中选择n个随机且独立的元素;
print(id)
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
}
uploadurl = '{}/south/edgeFile/upload'.format(host)
f = open(filepath,'rb')
print(type(f))
m= MultipartEncoder(
fields={
'cloudPath': cloudPath,
'taskId': taskId,
'token': getToken(d_key,d_name,d_secr),
'file': (f.name,f,'application/octet-stream')
}
)
print(type(m))
print(m)
response=requests.post(
uploadurl,
headers={'Content-Type': m.content_type},
data=m,
timeout=None,
verify=False
)
f.close()
print(m.content_type)
print(m)
print('------------------------------------------------------')
print(response)
print(response.url)
print(response.status_code)
print(response.content)
if response.status_code==200:
print('upload success')
else:
print('upload failed')
if __name__ == "__main__":
postCloudFile(sys.argv[1],sys.argv[2],sys.argv[3])