문제

Is there a way beyond catching exceptions(HTTPError,URLError), to check if access to a url is permitted.

I have to constantly(every 30 secs) ping a url (using urllib2.open)(which might or might not be valid). And throwing and catching exceptions each time seems excessive. I couldn't find anything in the documentation.

도움이 되었습니까?

해결책

There's nothing wrong with using try/except. That's the way to do such things in python.

it's easier to ask forgiveness than permission

다른 팁

import requests
r = requests.get('http://httpbin.org/get')
>>> r.status_code == requests.codes.ok
True
>>> r.status_code
200

requests

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top