I need a way specify the source interface for my http get requests, which can be either ppp1 or ppp2 interface. Currently I m using pycurl
curlObj.setopt(pycurl.URL,url)
curlObj.setopt(pycurl.CONNECTTIMEOUT,45)
curlObj.setopt(pycurl.INTERFACE,lastInterface)
Can this be done using python requests module?