[python-uk] File upload with 'requests' package
Good evening everyone, I try to post a file (100MB) on a Web form with python3 and the 'requests' package. This is my implementation : --BOF- #!/usr/local/bin/python3 -u import requests email="u...@srv.fr
Re: [python-uk] File upload with 'requests' package
hon-uk" Are you uploading to S3? 100 Continue is pretty obscure, it's sent by the server _before_ the client has sent the body, lots of clients don't expect that and handle it badly. See https://github.com/boto/boto/issues/2207 On 02/12/2016 16:10, Florian BERBAR wrote: Good e