The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

use WWW::Velib::Station;

for my $station (@ARGV) {
    my $s = WWW::Velib::Station->new($station);
    printf "$station: a:%2d f:%2d d:%2d t:%2d\n",
        $s->available,
        $s->free,
        $s->disabled,
        $s->total,
    ;
}