Threads running in different web browser windows

L

Lad

I would like to use httplib/urllib to download webpages from 3
different websites.From my script
I want to open 3 webbrowser windows( 3 threads) and open in each
thread( window) pages from a particular website.
Is it possible to do that in Python?
Thanks for help
Lad
 
H

Harald Massa

I would like to use httplib/urllib to download webpages from 3
different websites.From my script
I want to open 3 webbrowser windows( 3 threads) and open in each
thread( window) pages from a particular website.
Is it possible to do that in Python?
Yes, it is possible to do that in Python.

Best wishes,

Harald
 
L

Lad

Harald Massa said:
Yes, it is possible to do that in Python.

Best wishes,

Harald

And any idea how? I do not know how I can open ( from a running script
in one webbrowser window)a new webbrowser window and start another
script in that new window. Can you please help?
Thanks
Lad
 
H

Harald Massa

Lad,
And any idea how? I do not know how I can open ( from a running script
in one webbrowser window)

I have no idea how you can have "a running [Python] script in one
webbrowser window" without being very very competent on installing Python
as Active Scripting Language or using Python / Mozilla bindings.

If you would be that deep into Python / computing you surely would have
no need to ask this question...

so I assume that you just need to open 3 webbrowser-sessions. They are
"independent processes" anyway (at least on windows and linux), so no
nead for threading.

just

import webbrowser
webbrowser.open("http://www.python.org", new=1)
webbrowser.open("http://www.postgresql.org", new=1)
webbrowser.open("http://www.wxpython.org", new=1)


enjoy it,

Harald
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,209
Messages
2,571,088
Members
47,687
Latest member
IngridXxj

Latest Threads

Top