status.py 257 B

123456789101112
  1. '''URL status for testing the services.'''
  2. class URLStatus(object):
  3. ok = 'ok'
  4. '''Found a URL.'''
  5. not_found = 'notfound'
  6. '''Did not find a URL.'''
  7. unavailable = 'blocked'
  8. '''URL is blocked or unavailable such as a DCMA notice.'''