Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to send a "multipart/form-data" with requests in python? How to send a file, I understand, but how to send the form data by this method can not understand.

share|improve this question
your question is not really clear. What do you want to achieve? Do you wish to send "multipart/form-data" without a file upload in the form? – Hans Then Sep 15 '12 at 17:53
The fact that files parameter is used to do both is a very bad API. I raised issue titled Sending multipart data - we need better API to fix this. If you agree that using files parameter to send mulitpart data is misleading at best please ask to change the API in the above issue. – Piotr Dobrogost Nov 10 '12 at 19:56
@PiotrDobrogost that issue is closed. Do not encourage people to comment on closed issues, relevant or otherwise. – sigmavirus24 Feb 13 at 16:36
Nevermind, I just realized your comment was posted before it was closed. I hate how StackOverflow doesn't keep things in chronological order. – sigmavirus24 Feb 13 at 16:43

2 Answers

Basically, if you specify a files parameter (a dictionary), then requests will send a multipart/form-data POST instead of a application/x-www-form-urlencoded POST. You are not limited to using actual files in that dictionary, however:

>>> import requests
>>> requests.post('http://requestb.in/xucj9exu', files=dict(foo='bar')).text
u'ok\n'

and on http://requestb.in/xucj9exu?inspect I have:

POST /xucj9exu

    Content-Length  181
    Accept-Encoding identity, deflate, compress, gzip
    Connection      keep-alive
    Accept          */*
    User-Agent      python-requests/0.14.0 CPython/2.7.3 Darwin/11.4.0
    Host            requestb.in
    Content-Type    multipart/form-data; boundary=a480c8e5c6f94a16866e8c8f8efdd1c0

files can also be a list of two-value tuples, if you need ordering and/or multiple fields with the same name:

requests.post('http://requestb.in/xucj9exu', files=(('foo', 'bar'), ('spam', 'eggs')))

If you specify both files and data, then it depends on the value of data what will be used to create the POST body. If data is a string, it'll be used, otherwise files is used.

share|improve this answer
This will encode any thing sent to files as an actual file parameter in the multipart-encoding. This won't create a strict form but instead a form with all file parameters. See this for reference. – sigmavirus24 Feb 13 at 16:37
@sigmavirus24: The requests API has evolved since I posted this; let me investigate if this needs an update now. In any case, this corner of the API has been need of an overhaul for a while now. – Martijn Pieters Feb 13 at 16:39
apologies. StackOverflow put this near the top and I forget the reorganize questions and I have to look at the answered/asked dates. – sigmavirus24 Feb 13 at 16:40

You can specify both the data and files parameter to the post request. The data parameter should be a dictionary with your post values. Adding the files parameter will automatically set the correct content type for your request.

As far as I can tell, the library will allow you to set the content-type http header to "multipart/form-data" explicitly, but if you do not pass the files parameter it will not do something special to encode your non-file parameters.

I do not know enough of the HTTP protocol to say if this will make a difference.

share|improve this answer
data can also be text, or a sequence of (param, value) 2-value tuples. – Martijn Pieters Sep 21 '12 at 23:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.