I am learning how to use mechanize, a Python module to automate interacting with websites.
One feature is the automated handling of cookies. I would to want to dump
Just print the CookieJar Instance
# Browser br = mechanize.Browser() # Cookie Jar cj = cookielib.LWPCookieJar() br.set_cookiejar(cj) # Dump print cj