七牛什么的自定义域名竟然还需要备案,所以花两天时间写了一个简单的图片上传存储服务(基于 flask)
示例,使用 requests上传图片
import requests
def images():
url = 'http://127.0.0.1:8000/api/images'
files = {'images': open('desktop.png', 'rb')}
multiple_files = [
('images', ('11.png', open('11.png', 'rb'), 'image/png')),
('images', ('desktop.png', open('desktop.png', 'rb'), 'image/png'))
]
headers = {
'Api-Key':
'InhpeWFuZzA4MDdJBtx4AWlPpI_Oxx1Ki8',
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36'
}
# r = requests.post(url, files=multiple_files, headers=headers)
r = requests.post(url, files=files, headers=headers)
print(r.text)
GitHub 地址: https://github.com/honmaple/maple-file
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.