I have a few IP addresses and I need to 'bind' a request to one or another one of them dynamically. I am using python requests
library to make http
requests (GET
or POST
). Is it possible to bind
my requests to needed IP?
PS:
I asked because it is possible in .net C# to bind socket to needed output IP (IPEndPoint
) so I thought it may be possible in python requests
too.