The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::Eksisozluk - Perl interface for Eksisozluk.com

VERSION

version 0.11

SYNOPSIS

        use WWW::Eksisozluk;
        #You should create an object as shown below.
        my $eksi    = WWW::Eksisozluk->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.

AUTHOR

Kivanc Yazan

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Kivanc Yazan.

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