Re: Truoble With A Search Script for ImageBin.org

2010-03-19 Thread Brandon C
*grumble* *grumble* *grumble* oops, sorry ... my mistake 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: import urllib import urllib2 url = 'http://imagebin.org/index.php?page=search' values = {'search_for' : 'bla

Re: Truoble With A Search Script for ImageBin.org

2010-03-18 Thread Cameron Simpson
On 18Mar2010 22:43, Steve Holden wrote: | Brandon Conner wrote: | > I'm trying to develop a script that will return the results of a POST | > request that should list all images uploaded by a user. However, when i | > run the script, i get returned the HTML of the page with the search | > form.

Re: Truoble With A Search Script for ImageBin.org

2010-03-18 Thread Steve Holden
Brandon Conner wrote: > Hey Pythoners, > > its my first post here, yay! > > I'm trying to develop a script that will return the results of a POST > request that should list all images uploaded by a user. However, when i > run the script, i get returned the HTML of the page with the search > form

Truoble With A Search Script for ImageBin.org

2010-03-18 Thread Brandon Conner
Hey Pythoners, its my first post here, yay! I'm trying to develop a script that will return the results of a POST request that should list all images uploaded by a user. However, when i run the script, i get returned the HTML of the page with the search form. I am wondering what am i doing inco