For some reason when I try to get and process the following url with python-requests I receive an error causing my program to fail. Other similar urls seems to work fine
import requests
test = requests.get('http://t.co/Ilvvq1cKjK')
print test.url, test.status_code
What could be causing this URL to fail instead of just producing a 404 status code?
HTTPConnectionPool(host='nasa.gov', port=80): Max retries exceeded with url: /aeronauticsenough info.? The actual connection to the server is being refused so you can't get a 404 from it...requests.get()and this one causes the program to terminate is there a way around that?