Search Results

4
votes

parse http response header from wget

The output of wget you are looking for is written on stderr. You must redirect it: $ wget -SO- -T 1 -t 1 http://myurl.com:15000/myhtml.html 2>&1 | egrep -i "302" …
1
vote

(Python) socket.gaierror on every addres…except http://www.reddit.com?

you forgot to resolve the hostname: addr = socket.gethostbyname(url[1]) ... sock.connect((addr,80)) …