
WWW::ArsenalFC::TicketInformation - Get Arsenal FC ticket information for forthcoming matches

version 1.123160

my $ticket_information = WWW::ArsenalFC::TicketInformation->new();
$ticket_information->fetch();
for my $match (@{$ticket_info->matches}){
# WWW::ArsenalFC::TicketInformation::Match objects
}
for my $category (@{$ticket_info->categories}){
# WWW::ArsenalFC::TicketInformation::Category objects
}

This is a module to get and parse the Arsenal ticket information for forthcoming matches (from http://www.arsenal.com/membership/buy-tickets).
Hint: Try aliased to save some typing when using this module.

An array reference of WWW::ArsenalFC::TicketInformation::Match objects.
An array reference of WWW::ArsenalFC::TicketInformation::Category objects.

Fetches and parses the Arsenal ticket information. Populates matches and categories.

An example of using this module to send out emails when tickets become available is available at https://gist.github.com/3728775.


Andrew Jones <andrew@arjones.co.uk>

This software is copyright (c) 2012 by Andrew Jones.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.