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

NAME

WWW::Sundance - Get movie schedules/info from Sundance.

SYNOPSIS

  use WWW::Sundance;
  my $sd = WWW::Sundance->new;
  $sd->schedule_date('07/28/2002');
  $sd->schedule;

  $sd->search_text('fellini');
  $sd->search;

DESCRIPTION

WWW::Sundance is used to fetch movie schedules and info from the Sundance web site.

CONSTRUCTOR

new ()

This is the contructor for a new WWW:Sundance object;

METHODS

schedule_date ( DATE )

If DATE is passed, this method will set the schedule date to query. The format for DATE is 'mm/dd/yyyy'. Apologies to non-US users... this is the date format used in the Sundance query string. The schedule date is returned.

schedule ()

This method will fetch the schedule for the schedule_date. If schedule_date is not set, then schedule for current date will be fetched.

search_text ( TEXT )

If TEXT is passed, this method will set the search string to be used to query Sundance. The search text is returned.

search ()

This method will fetch all entries matching search_text.

AUTHOR

Doug Sparling, doug@dougsparling.com

COPYRIGHT

Copyright (c) 2002 Douglas Sparling. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself;