<div>*grumble* *grumble* *grumble*</div><div><br></div><div>oops, sorry ... my mistake</div><div><br></div><div>it turns out that i misspelled one of the values and left another one out. here's the working script now for anyone who may care:</div>
<div><br></div><div><div>import urllib</div><div>import urllib2</div><div>url = '<a href="http://imagebin.org/index.php?page=search">http://imagebin.org/index.php?page=search</a>'</div><div>values = {'search_for' : 'blah', 'field' : 'nickname', 'mode' : 'search'}</div>
<div>data = urllib.urlencode(values)</div><div>request = urllib2.Request(url, data)</div><div>response = urllib2.urlopen(request)</div><div>page = response.read()</div><div>print page</div><div><br></div><div>the value of 'field' is 'nickname, not 'Nickname';</div>
<div>and i left out the 'mode' one</div><div><br></div><div>tks for yalls help</div></div>