アップロードされたファイルをpythonで受信というのはよく見かけたが
pythonで画像アップロードという記事はあまり見かけなかったのでメモ。
import requests
url = "http://localhost/opencv/server.php"
image = "./001.jpg"
data = open(image, 'rb')
file = {'image': data}
res = requests.post(url, files=file)
print(res)