Example:
with open('foobar.txt') as f:
r = requests.post("http://requestb.in/179gbs61", files={'file':f})
This produces a request with a different a multipart boundary every time. i.e., this call produces a different request every time.
For the purposes of testing, I would like to fix to some value like I_AM_NOT_A_MULTIPART_BOUNDARY
or some such.
Q: How can I go about this?