disable image loading to speed up webpage load

View: New views
6 Messages — Rating Filter:   Alert me  

disable image loading to speed up webpage load

by elca :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
im using win32com 's webbrowser module.
i have some question about it..
is it possible to disable image loading to speed up webpage load?
any help ,much appreciate
thanks in advance

Parent Message unknown Re: disable image loading to speed up webpage load

by Diez B. Roggisch-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

elca schrieb:
> Hi,
> im using win32com 's webbrowser module.
> i have some question about it..
> is it possible to disable image loading to speed up webpage load?
> any help ,much appreciate
> thanks in advance

Use urllib2.

Diez
--
http://mail.python.org/mailman/listinfo/python-list

Re: disable image loading to speed up webpage load

by elca :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Diez B. Roggisch-2 wrote:
elca schrieb:
> Hi,
> im using win32com 's webbrowser module.
> i have some question about it..
> is it possible to disable image loading to speed up webpage load?
> any help ,much appreciate
> thanks in advance

Use urllib2.

Diez
--
http://mail.python.org/mailman/listinfo/python-list
you can show me some more specific sample or demo?

Parent Message unknown Re: disable image loading to speed up webpage load

by Irmen de Jong-4 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 4-11-2009 8:32, elca wrote:
> Diez B. Roggisch-2 wrote:
>>
>> Use urllib2.
>>
>
> you can show me some more specific sample or demo?
>

It's not even more than 1 click away in the Python standard lib
documentation... how hard can it be?

http://docs.python.org/library/urllib2.html#examples

-irmen
--
http://mail.python.org/mailman/listinfo/python-list

Parent Message unknown Re: disable image loading to speed up webpage load

by Tim Roberts :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

elca <highcar@...> wrote:
>
>im using win32com 's webbrowser module.

Win32com does not have a webbrowser module.  Do you mean you are using
Internet Explorer via win32com?

>i have some question about it..
>is it possible to disable image loading to speed up webpage load?

If you are using IE, then you need to tell IE to disable image loading.  I
don't know a way to do that through the IE COM interface.
--
Tim Roberts, timr@...
Providenza & Boekelheide, Inc.
--
http://mail.python.org/mailman/listinfo/python-list

Re: disable image loading to speed up webpage load

by elca :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Tim Roberts wrote:
elca <highcar@gmail.com> wrote:
>
>im using win32com 's webbrowser module.

Win32com does not have a webbrowser module.  Do you mean you are using
Internet Explorer via win32com?

>i have some question about it..
>is it possible to disable image loading to speed up webpage load?

If you are using IE, then you need to tell IE to disable image loading.  I
don't know a way to do that through the IE COM interface.
--
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.
--
http://mail.python.org/mailman/listinfo/python-list
Hello,
yes right, i mean IE com interface.
thanks for your reply..
if anyone can help much appreciate !