http://www.perlmonks.org?node_id=1012354


in reply to Parsing zipped xml data

The parse() method accepts an opened filehandle so something like

use PerlIO::gzip; open my $IN, "<:gzip", "file.gz" or die $!; $parser->parse($IN); ...
should work. (untested)

Jenda
Enoch was right!
Enjoy the last years of Rome.