Okay, so using urllib2 I can send GET data easily to a website like so:
import urllib2
opener = urllib2.build_opener()
page = opener.open( 'http://jammersbase.ath.cx?error=Sent%20some%20get%20data...' ).read()
print "Sent GET data successfully!"
But how do you suppose I sent POST data to a website? I need this so I can login to a website using an automated script.
Will urllib2 store your session as if you're browing directly on the site, or is there some fancy thing I need to do for that? :o