def request_post(url, payload, headers):
requests.post(url, data=payload, headers=headers)
request_post('mywebserver.com', ['a', 'b'])
When payload
becomes a list of thousands of string, server throws a ClientAbortException.
Is there something that needs to be configured from the client side to be able to send a large post data?