Skip to content

Instantly share code, notes, and snippets.

@zhangyoufu
Created August 6, 2014 22:50
Show Gist options
  • Select an option

  • Save zhangyoufu/a5b68002db35d06ee39d to your computer and use it in GitHub Desktop.

Select an option

Save zhangyoufu/a5b68002db35d06ee39d to your computer and use it in GitHub Desktop.
requests force multipart form without filename
import requests
class DummyList( list ):
def __len__( self ):
return 1
requests.post( 'http://requestb.in/ul8ixpul', data={'a':'A'}, files=DummyList() )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment