I know this is not strictly what the original asker asked, but just because it's not wrapping the entire request body in JSON, doesn't meant it's not RESTFul to use multipart/form-data to post both the JSON and the file (or multiple files) in a single request:
curl -F "metadata=<metadata.json" -F "file=@my-file.tar.gz" http://some.domain.com/add-file
on the server side:
class AddFileResource(Resource):
def render_POST(self, request):
metadata = json.loads(request.args['metadata'][0])
file_body = request.args['file'][0]
...
to upload multiple files, it's possible to either use separate "form fields" for each:
curl -F "metadata=<metadata.json" -F "file1=@some-file.tar.gz" -F "file2=@some-other-file.tar.gz" http://some.domain.com/add-file
...in which case the server code would have request.args['file1'][0] and request.args['file2'][0]
or reuse the same one for many:
curl -F "metadata=<metadata.json" -F "files=@some-file.tar.gz" -F "files=@some-other-file.tar.gz" http://some.domain.com/add-file
...in which case request.args['files'] would simply be a list of length 2.
or actually pass multiple files into a single field in one go:
curl -F "metadata=<metadata.json" -F "files=@some-file.tar.gz,some-other-file.tar.gz" http://some.domain.com/add-file
...in which case request.args['files'] would be a string containing all files which you'd have to parse yourself—not sure how to do it, but I'm sure it's not difficult, or better just use the previous approaches.
P.S. Just because I'm using curl as a way to generate the POST requests doesn't mean the exact same HTTP requests couldn't be sent from Python or by any other means.