You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Streaming data directly in the request content seems more appropriate for uploading files than sending multipart forms.
Flask can use Request.data or Request.stream -- documentation
Apache http.client has corresponding FileEntity and InputStreamEntity -- tutorial
Python requests has request.post(url, data=fp) -- docs
Changing submission method should not change method definitions in the slivka client
The text was updated successfully, but these errors were encountered:
Streaming data directly in the request content seems more appropriate for uploading files than sending multipart forms.
Flask can use
Request.data
orRequest.stream
-- documentationApache http.client has corresponding
FileEntity
andInputStreamEntity
-- tutorialPython requests has
request.post(url, data=fp)
-- docsChanging submission method should not change method definitions in the slivka client
The text was updated successfully, but these errors were encountered: