Multiple image upload python api
onLet’s just create python api to upload multiple images to server. I am going to upload image from the base64 string that is posted from the json data. I am using web.py to create the python multi image upload web service. #upload.py import web import json import base64 urls = ( ‘/uploads/’, ‘uploads’ ) class […]
Read more..