如何在库请求中发送100个继续请求

Nik*_*her 7 python python-requests

如何在请求中发送以下HTTP请求?

HTTP/1.1 100 Continue
Run Code Online (Sandbox Code Playgroud)

我想在请求模块中获取负责的套接字并手动完成.像这样的东西:

requests.packages.urllib3.connectionpool.socket.socket.send(b'HTTP/1.1 100 Continue')
Run Code Online (Sandbox Code Playgroud)

但那不干净(也不会起作用).

和想法?