Network Analyst who plays around with many things open source when he is not feeding his MMORPG addiction.
The Internet needed another source of rants and uninvited uninformed opinions.
#!/usr/bin/python
import mechanize
b = mechanize.Browser()
b.open("https://www.bloglines.com/export")
b.select_form(name="login")
b["email"] = "email@address"
b["password"] = "password"
b.submit()
print b.response().read()
Hopefully this will save someone else a few minutes of their time...