Modification of a urllib2 object ?

2008-10-10 Thread vincehofmeister
I have several ways to the following problem. This is what I have: ... import ClientForm import BeautifulSoup from BeautifulSoup request = urllib2.Request('http://form.com/) self.first_object = urllib2.open(request) soup = BeautifulSoup(self.first_object) forms = ClienForm.ParseResponse(self

Re: Modification of a urllib2 object ?

2008-10-10 Thread vincehofmeister
On Oct 10, 1:02 pm, George Sakkis <[EMAIL PROTECTED]> wrote: > On Oct 10, 2:32 pm, [EMAIL PROTECTED] wrote: > > > > > I have several ways to the following problem. > > > This is what I have: > > > ... > > import ClientForm > > import BeautifulSoup from BeautifulSoup > > > request = urllib2.Request(

Py2exe and Module Error...

2008-10-22 Thread vincehofmeister
Hey everyone: I am using py2exe and everything is working fine except one module, ClientCookie, found here: http://wwwsearch.sourceforge.net/ClientCookie/ Keeps coming up as not found no matter what I do. I have tried all these combinations from the command line: python run.py py2exe - Results

Re: Py2exe and Module Error...

2008-10-23 Thread vincehofmeister
On Oct 22, 8:33 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Wed, 22 Oct 2008 20:34:39 -0200, <[EMAIL PROTECTED]> escribió: > > > I am using py2exe and everything is working fine except one module, > > ClientCookie, found here: > > >http://wwwsearch.sourceforge.net/ClientCookie/ > > > Ke