Re: [Tutor] python myspace module?

2005-10-30 Thread Andrew P
Probably the most useful library from the wwwsearch page Danny pointed you to is the cookielib, which is built into Python as of 2.3 or 2.4. The most useful because you can't scrape by without it on most sites, and cookies are really no fun to handle manually Login and forms can largely be

[Tutor] python myspace module?

2005-10-25 Thread Ed Hotchkiss
looking to write a myspace wrapper/module. what is the best way (hopefully using the stdlib not an outside module) to connect to a website and (if possible, otherwise ill have to code it?) access forms with GET POST blah blah blah ... thanks!-- edward hotchkiss

Re: [Tutor] python myspace module?

2005-10-25 Thread Danny Yoo
On Tue, 25 Oct 2005, Ed Hotchkiss wrote: looking to write a myspace wrapper/module. what is the best way (hopefully using the stdlib not an outside module) to connect to a website and (if possible, otherwise ill have to code it?) access forms with GET POST blah blah blah ... Hi Ed, We do

Re: [Tutor] python myspace module?

2005-10-25 Thread nephish
Hey there Ed, if you pull this off, let us know. i have wanted to do this very thing, but just don't have the time. sk On Tue, 2005-10-25 at 14:24 -0700, Danny Yoo wrote: On Tue, 25 Oct 2005, Ed Hotchkiss wrote: looking to write a myspace wrapper/module. what is the best