This library is the official Python client for the stopam[1] spam prevention 
service.

  ..[1] http://stopam.com/
  
  
Usage
=====

from stopam.client import Service
   with Service('your-api-key') as c:
       q = c.ask()
       answer = raw_input(q.question) # How much is 3+3? (for example)
       if c.verify(q.token, answer):
           print('valid') # if the user entered '6' or 'six'
       else:
           print('failed') # otherwise
           
Visit stopam.com to obtain an API key and read more how to use this client
and the service.           