How would you go about sending a request with multiples values with the same key?
r = requests.post('http://www.httpbin.org/post', data={1: [2, 3]})
print r.content
{ ... "form": { "1": "3" }, ... }
Edit:
Hmm, very odd. I tried echoing the post data using a simple Flask application and I'm getting:
[('1', u'2'), ('1', u'3')]
Is this just a shortcoming of httpbin.org?