in reply to determine web page size, w/ and w/o images

I wrote HTTP::Size to do just this. From the docs:
get_sizes( URL, BASE_URL )

The get_sizes function is like get_size, although for HTML pages it also fetches all of the images then sums the sizes of the original page and image sizes. It returns a total download size. In list context it returns the total download size and a hash reference whose keys are the URLs of the images found in the HTML and whose values are hash references with these keys:
--
brian d foy <bdfoy@cpan.org>
  • Comment on Re: determine web page size, w/ and w/o images

Replies are listed 'Best First'.
Re^2: determine web page size, w/ and w/o images
by water (Deacon) on Jun 18, 2004 at 20:51 UTC
    Great! Thanks!

    I couldn't tell from the docs -- does the module handle redirects? Included external CSS and javascript files etc?

    Curious, thanks!