
WWW::Velib::Trip - Details of a single trip made on the Velib system

This document describes version 0.02 of WWW::Velib::Trip, released 2007-xx-xx.

use WWW::Velib;
my $v = WWW::Velib->new(login => '0000123456', password => '1234');
$v->get_month;
for my $trip ($v->trips) {
print "Journey from ", $trip->{from}, " to ", $trip->{to},
" took", $trip->{duration}, "minutes.\n";
}



David Landgren, copyright (C) 2007. All rights reserved.
If you (find a) use this module, I'd love to hear about it. If you want to be informed of updates, send me a note. You know my first name, you know my domain. Can you guess my e-mail address?

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