NAME

Dictionary::Cambridge - A simple module for the Cambridge Dictionary API, only implemented

VERSION

version 0.02

SYNOPSIS

use Dictionary::Cambridge

  my $dictionary = Dictionary::Cambridge->new(
   access_key => $ENV{ACCESS_KEY},
   dictionary => 'british',
   format     => 'xml'
);

my $meaning = $dictionary->get_entry("test");

DESCRIPTION

A simple module to interact with Cambridge Dictionary API, this module will only be able to get the meaning of the words
and their relevant examples if they exist. Also this is my first release so please be patient on mistake and errors.

METHODS get_entry params: word to get the meaning of

SEE ALSO

http://dictionary-api.cambridge.org/api/resources

AUTHOR

Farhan Siddiqui <forsadia@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Farhan Siddiqui.

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