SYNOPSIS use WWW::Eksi; #You should create an object as shown below. my $eksi = WWW::Eksi->new(); #IDs for today's debe list (element at index 0 is the top one) my @debe = $eksi->debe_ids(); #Details (body, author, date etc) of an entry with given id. my %entry = $eksi->entry($debe[0]); #Popular topics with number of recent entries in it. my %popular = $eksi->topiclist(popular); #Today's topics with number of recent entries in it. my %today = $eksi->topiclist(today); DESCRIPTION This module provides a simple perl interface for eksisozluk, which is a user-based web dictionary written mostly in Turkish, active since 1999. You can get debe list (top entries of yesterday) by using this module. You can also reach topic list for today, and popular topic lists. As a friendly note, data you reach by using this module might be subject to copyright terms of Eksisozluk. See eksisozluk.com for details.