ok, so I realized that it was pretty simple after I realized that I can use a combination of urllib, ulrlib2 and beautifulsoup
import urllib, urllib2 from BeautifulSoup import BeautifulSoup as bs_parse data = urllib.urlencode(values) req = urllib2.Request(url, data) res = urllib2.urlopen(req) page = bs_parse(res.read())
source share