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


in reply to Re: Approximate Delivery Date from USPS---OT rant
in thread Approximate Delivery Date from USPS

So Business::Shipping::USPS_Online::Tracking isn't what you're looking for? However, I agree with zentara; I don't think you'd be far off with:
use DateTime::Event::Random; use strict; my $dt; if (exists (USPS)) { # they could be bankrupt do { $dt = DateTime::Event::Random->datetime( after => DateTime->now ) +; } until $dt->day_of_week != 7; # sunday } else { print "Never, sorry\n"; }

fnord