How do i set the source IP/interface with Python and urllib2?
|
|
Unfortunately the stack of standard library modules in use (urllib2, httplib, socket) is somewhat badly designed for the purpose -- at the key point in the operation, When you're facing such problems you only have two not-so-good solutions: either copy, paste and edit the misdesigned code into which you need to place a "hook" that the original designer didn't cater for; or, "monkey-patch" that code. Neither is GOOD, but both can work, so at least let's be thankful that we have such options (by using an open-source and dynamic language). In this case, I think I'd go for monkey-patching (which is bad, but copy and paste coding is even worse) -- a code fragment such as:
Depending on your exact needs (do you need all sockets to be bound to the same source IP, or...?) you could simply run this before using AKX's good answer is a variant on the "copy / paste / edit" alternative so I don't need to expand much on that -- note however that it doesn't exactly reproduce |
|||||||||||||
|
|
This seems to work.
You'll need to figure out some way to parameterize "127.0.0.1" there, though. |
|||||||
|
|
I thought I'd follow up with a slightly better version of the monkey patch. If you need to be able to set different port options on some of the sockets or are using something like SSL that subclasses socket, the following code works a bit better.
You have to only bind the socket on connect if you need to run something like a webserver in the same process that needs to bind to a different ip address. |
|||
|
|
|
Here's a further refinement that makes use of HTTPConnection's source_address argument (introduced in Python 2.7):
This gives us a custom urllib2.HTTPHandler implementation that is source_address aware. We can add it to a new urllib2.OpenerDirector and install it as the default opener (for future urlopen() calls) with the following code:
|
||||
|
|
Reasoning that I should monkey-patch at the highest level available, here's an alternative to Alex's answer which patches
|
|||
|
|
