阿里云相册

master
WuXianChaoPin 6 years ago
parent a777f835ec
commit 8a3c9033d1
  1. 67
      PixivSearch/aliyun/photo/AliyunPhoto.py

@ -44,36 +44,51 @@ class UploadPhoto(AcsClient):
return CommonRequest(domain=self.domain, version=self.version,
action_name=action)
def do_action_with_exception(self, acs_request):
return json.loads(super().do_action_with_exception(acs_request).decode())
def showOption(self, options, key, desc):
choose = []
for index, option in enumerate(options):
choose.append(option[key])
print('{index}:{name}'.format(index=index + 1, name=option[key]))
return choose[(int)(input('输入{desc}\n'.format(desc=desc))) - 1]
if __name__ == '__main__':
# createTransaction("GET", "C:/Users/10295/Desktop/灵梦.png")
client = UploadPhoto()
request = client.createAction('ListPhotoStores')
response = json.loads(client.do_action_with_exception(request).decode())
print(response)
response = client.do_action_with_exception(request)
print('PhotoStores:')
photoStores = response['PhotoStores']
for index, photoStore in enumerate(photoStores):
print('{index}:{name}'.format(index=index + 1, name=photoStore['Name']))
StoreName = input('输入StoreName\n')
StoreName = client.showOption(photoStores, 'Name', 'StoreName')
request = client.createAction('GetPhotoStore')
request.add_query_param('StoreName', StoreName)
response = client.do_action_with_exception(request)
print(response)
request = client.createAction('FetchLibraries')
request.add_query_param('StoreName', StoreName)
response = client.do_action_with_exception(request)
Libraries = response['Libraries']
LibraryId = client.showOption(Libraries, 'LibraryId', 'LibraryId')
request = client.createAction('GetLibrary')
request.add_body_params('StoreName', StoreName)
request.add_body_params('LibraryId', LibraryId)
response = client.do_action_with_exception(request)
print(response)
request = client.createAction('CreateTransaction')
filePath = input('输入上传文件路径')
fileName = filePath.split('/')[-1]
request.add_query_param('Size', os.path.getsize(filePath))
request.add_query_param('Ext', fileName[-fileName[::-1].index('.'):])
request.add_query_param('Md5', client.get_md5_01(filePath))
request.add_query_param('StoreName', StoreName)
# request = client.createAction('GetPhotoStore')
# request.set_accept_format('json')
# request.add_query_param('StoreName', StoreName)
# response = json.loads(client.do_action_with_exception(request).decode())
# print(response)
# buckets = response['PhotoStore']['Buckets']
#
# request = client.createAction('CreateTransaction')
# filePath = 'C:/Users/10295/Desktop/灵梦.png'
# fileName = filePath.split('/')[-1]
# request.add_query_param('Size', os.path.getsize(filePath))
# request.add_query_param('Ext', fileName[-fileName[::-1].index('.'):])
# request.add_query_param('Md5', client.get_md5_01(filePath))
# request.add_query_param('StoreName', StoreName)
#
# liberaryId = input('输入liberaryId\n')
# request.add_query_param('LibraryId', liberaryId)
# response = json.loads(client.do_action_with_exception(request))
# print(response)
@ -100,9 +115,3 @@ if __name__ == '__main__':
# request.add_query_param('LibraryId', liberaryId)
# response = json.loads(client.do_action_with_exception(request))
# print(response)
request=client.createAction('FetchLibraries')
request.add_query_param('StoreName', StoreName)
request.add_query_param('LibraryId', '')
response = json.loads(client.do_action_with_exception(request))
print(response)
Loading…
Cancel
Save