Skip to content

Instantly share code, notes, and snippets.

@khapota
Created April 13, 2016 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khapota/0ff0c712c5f21a53b890b03bd92a366d to your computer and use it in GitHub Desktop.
Save khapota/0ff0c712c5f21a53b890b03bd92a366d to your computer and use it in GitHub Desktop.
upload files python request
import requests
files = {"upload_file": open('path/to/file.txt', 'rb')}
data = {"content": "test upload"}
requests.post(url, files=files, data=data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment