Skip to content

woodruffw/WebService-UrbanDictionary

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
t
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

NAME

WebService::UrbanDictionary - An OO interface to UrbanDictionary.com's JSON API.

VERSION

version 2.015

SYNOPSIS

    use WebService::UrbanDictionary;

    my $ud = WebService::UrbanDictionary->new;

    my $results = $ud->request('perl'); 

    for my $each (@{ $results->definitions }) {
            printf "Definition: %s\n(by %s)\n\n", $each->definition, $each->author;
    }

DESCRIPTION

WebService::UrbanDictionary provides an object-oriented to UrbanDictionary's online JSON API.

Methods

SEE ALSO

WebService::UrbanDictionary::Term

WebService::UrbanDictionary::Term::Definition

WWW::Search::UrbanDictionary - Module for accessing UrbanDictionary's (deprecated) SOAP API.

AUTHOR

William Woodruff william@tuffbizz.com

CONTRIBUTORS

COPYRIGHT AND LICENSE

This software is Copyright (c) 2015 by William Woodruff.

This is free software, licensed under:

The MIT (X11) License