"""Breaking a trivial CAPTCHA implementation."""

import urllib
PORT = 8001

for i in range(20):
    params = {
        'id': 'fhccbeg',  # Replace these parameters with the CAPTCHA id and
        'word': 'support' # solution you're going to use.
    }
    webf = urllib.urlopen('http://localhost:%d' % PORT, urllib.urlencode(params))
    print i, webf.read(),