This repository has been archived by the owner on Feb 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c969019
commit cda6668
Showing
10 changed files
with
1,258 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
"""Encode multipart form data to upload files via POST.""" | ||
|
||
# (c) Ben Hoyt, used under MIT: | ||
# http://code.activestate.com/recipes/578668-encode-multipart-form-data-for-uploading-files-via/ | ||
|
||
from __future__ import print_function | ||
|
||
import mimetypes | ||
import random | ||
import string | ||
|
||
_BOUNDARY_CHARS = string.digits + string.ascii_letters | ||
|
||
def encode_multipart(fields, files, boundary=None): | ||
r"""Encode dict of form fields and dict of files as multipart/form-data. | ||
Return tuple of (body_string, headers_dict). Each value in files is a dict | ||
with required keys 'filename' and 'content', and optional 'mimetype' (if | ||
not specified, tries to guess mime type or uses 'application/octet-stream'). | ||
>>> body, headers = encode_multipart({'FIELD': 'VALUE'}, | ||
... {'FILE': {'filename': 'F.TXT', 'content': 'CONTENT'}}, | ||
... boundary='BOUNDARY') | ||
>>> print('\n'.join(repr(l) for l in body.split('\r\n'))) | ||
'--BOUNDARY' | ||
'Content-Disposition: form-data; name="FIELD"' | ||
'' | ||
'VALUE' | ||
'--BOUNDARY' | ||
'Content-Disposition: form-data; name="FILE"; filename="F.TXT"' | ||
'Content-Type: text/plain' | ||
'' | ||
'CONTENT' | ||
'--BOUNDARY--' | ||
'' | ||
>>> print(sorted(headers.items())) | ||
[('Content-Length', '193'), ('Content-Type', 'multipart/form-data; boundary=BOUNDARY')] | ||
>>> len(body) | ||
193 | ||
""" | ||
def escape_quote(s): | ||
return s.replace('"', '\\"') | ||
|
||
if boundary is None: | ||
boundary = ''.join(random.choice(_BOUNDARY_CHARS) for i in range(30)) | ||
lines = [] | ||
|
||
for name, value in fields.items(): | ||
lines.extend(( | ||
'--{0}'.format(boundary), | ||
'Content-Disposition: form-data; name="{0}"'.format(escape_quote(name)), | ||
'', | ||
str(value), | ||
)) | ||
|
||
for name, value in files.items(): | ||
filename = value['filename'] | ||
if 'mimetype' in value: | ||
mimetype = value['mimetype'] | ||
else: | ||
mimetype = mimetypes.guess_type(filename)[0] or 'application/octet-stream' | ||
lines.extend(( | ||
'--{0}'.format(boundary), | ||
'Content-Disposition: form-data; name="{0}"; filename="{1}"'.format( | ||
escape_quote(name), escape_quote(filename)), | ||
'Content-Type: {0}'.format(mimetype), | ||
'', | ||
value['content'], | ||
)) | ||
|
||
lines.extend(( | ||
'--{0}--'.format(boundary), | ||
'', | ||
)) | ||
body = '\r\n'.join(lines) | ||
|
||
headers = { | ||
'Content-Type': 'multipart/form-data; boundary={0}'.format(boundary), | ||
'Content-Length': str(len(body)), | ||
} | ||
|
||
return (body, headers) | ||
|
||
if __name__ == '__main__': | ||
import doctest | ||
doctest.testmod() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.