NAME

WWW::Hermes::Detail - Perl module for the Hermes online tracking service with details.

SYNOPSIS

use WWW::Hermes::Detail;
my($newdata,$other) = hermescheck('paketnumber','de');#de for text in german

foreach my $key (keys %$other){# shipnumber, to, pickupdate, deliverydate, laststatus
	print $key . ": " . ${$other}{$key} . "\n";
}
print "\nDetails:\n";

foreach my $key (@{$newdata}){
	#foreach my $key2 (keys %{$key}){#datum, daten
	#	print ${$key}{$key2};
	#	print "\t";
	#}

	print ${$key}{datum};
	print "\t";
	print ${$key}{daten};
	print "\n";
}

DESCRIPTION

WWW::Hermes::Detail - Perl module for the Hermes online tracking service with details.

AUTHOR

Stefan Gipper <stefanos@cpan.org>, http://www.coder-world.de/

COPYRIGHT

WWW::Hermes::Detail is Copyright (c) 2010 Stefan Gipper
All rights reserved.

This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.

SEE ALSO