When I try the following code, requests library not returning any response
import requests
url = "http://www.nodefarm.com/"
resp = requests.get(url, timeout=5.0)
print resp
Can someone tell me why my code got stuck in line 3?
P.S: I'm not receiving any error.
When I visit http://www.nodefarm.com/ in my browser, site works fine