Re: [Tutor] web browser

2007-07-21 Thread Kent Johnson
max baseman wrote: > has anyone ever written a web browser with python and Tkinter? if so > is there any documentation on it? if not does anyone know if their > which tutorials i should read if i wanted to write one for my apple? > > i don't know vary much Tkinter so i was going to start there

Re: [Tutor] Web Browser in Python

2005-08-04 Thread Alan G
> As for the size of project, I have been pursuing programming as > a hobby for years and really enjoy it.I dont have any specific > timeframe or deadline in mind so the size doesnt matter :). In that case go to it! :-) But you might like to consider using wxPython because as someone else men

Re: [Tutor] Web Browser in Python

2005-08-03 Thread Shitiz Bansal
Hi, I actually want to create a web-browser on my own. There are so many changes i would like to see in my browser that i felt that i would be better of creating my own rather than trying to modify the existing ones.As for the size of project, I have been pursuing programming as a hobby for years

Re: [Tutor] Web Browser in Python

2005-08-03 Thread Alan G
> I need to program a web browser in python.I dont have any idea of > how > to start, what i do have is time and willingness to learn. Can you explain what you have in mind? Do you actually want to create a web browser like IE or FireFox from scratch using Python? Or do you want to control your

Re: [Tutor] Web Browser in Python

2005-08-03 Thread Kent Johnson
R. Alan Monroe wrote: >>>I need to program a web browser in python.I dont have any idea of how to >>>start, what i do have is time and willingness to learn.Could anyone direct >>>me to some suitable reference? >>>Shitiz >>> > > >>How about Grail http://grail.sourceforge.net/ ? > > > Looks neat

Re: [Tutor] Web Browser in Python

2005-08-03 Thread R. Alan Monroe
>> I need to program a web browser in python.I dont have any idea of how to >> start, what i do have is time and willingness to learn.Could anyone direct >> me to some suitable reference? >> Shitiz >> > How about Grail http://grail.sourceforge.net/ ? Looks neat, but it doesn't run on my box: C

Re: [Tutor] Web Browser in Python

2005-08-03 Thread Luis N
On 8/3/05, Shitiz Bansal <[EMAIL PROTECTED]> wrote: > Hi, > I need to program a web browser in python.I dont have any idea of how to > start, what i do have is time and willingness to learn.Could anyone direct > me to some suitable reference? > Shitiz > How about Grail http://grail.sourceforge.

Re: [Tutor] Web browser

2005-06-13 Thread Kent Johnson
Liam Clarke wrote: > Can Beautiful Soup execute scripts? I was trying to scrape using > urllib2, and the Javascripts messed my navigation up something chronic. No, Beautiful Soup won't run scripts. AFAIK the only way to access the web from Python and execute JavaScripts is to automate a browser

Re: [Tutor] Web browser

2005-06-12 Thread Liam Clarke
Can Beautiful Soup execute scripts? I was trying to scrape using urllib2, and the _javascript_s messed my navigation up something chronic. On 6/13/05, Liam Clarke <[EMAIL PROTECTED]> wrote: For what Ismael wants, you'd need to use PyXPCOM.  IMAO, on a Win32 box, if you're not browsing dubious site

Re: [Tutor] Web browser

2005-06-12 Thread Liam Clarke
For what Ismael wants, you'd need to use PyXPCOM.  IMAO, on a Win32 box, if you're not browsing dubious sites, it's not really worth the effort of trying to grasp XPCOM, when ActiveX/COM & IE are sitting there ready to use with a simpler interface. My $0.02. On 6/12/05, Terry Carroll <[EMAIL PRO

Re: [Tutor] Web browser

2005-06-11 Thread Terry Carroll
On Sat, 11 Jun 2005, Ismael Garrido wrote: > I've been looking around for a web browser either written in python, or > with python bindings. MozPython? http://www.thomas-schilz.de/MozPython/README.html > What I need to do is load a web-page, enter a password-protected site > and follow certai

Re: [Tutor] Web browser

2005-06-11 Thread Liam Clarke
Ai, for the frames you just call the win32 methods directly. Easy enough, just got to deal with the DOM!On 6/11/05, Craig Booth < [EMAIL PROTECTED]> wrote:Hi,   As was recommended to me in a previous thread if you're on a Windows machine with IE installed then PAMIE(http://www.pamie.sourceforge.net

Re: [Tutor] Web browser

2005-06-11 Thread Craig Booth
Hi, As was recommended to me in a previous thread if you're on a Windows machine with IE installed then PAMIE (http://www.pamie.sourceforge.net) can simplify using the IE COM and does nearly everything you need. Pamie doesn't support frames correctly yet, but it is very easy to hack in supp

Re: [Tutor] Web browser

2005-06-11 Thread Kent Johnson
Ismael Garrido wrote: > Hello. > > I've been looking around for a web browser either written in python, or > with python bindings. > What I need to do is load a web-page, enter a password-protected site > and follow certain links, it needs to have frames and follow the refresh > meta. I'm runni

Re: [Tutor] Web browser

2005-06-11 Thread Alan G
> What I need to do is load a web-page, enter a password-protected site > and follow certain links, it needs to have frames and follow the refresh > meta. I'm running winxp, python 2.4 Do you need to do this interactively in a browser? It sounds like scripting the process using urlib might be a be

Re: [Tutor] Web browser

2005-06-10 Thread Trey Beck
Why do you need to use a web browser rather than doing this programmatically? On Jun 10, 2005, at 9:56 PM, Ismael Garrido wrote: > Hello. > > I've been looking around for a web browser either written in > python, or > with python bindings. > What I need to do is load a web-page, enter a passw