NAME

WWW::Yandex::CY - Yandex Thematic Index of Citing (TIC) for domain

SYNOPSIS

	# Default

    #!/usr/bin/perl
    use strict;
    use WWW::Yandex::CY;
	my $cy = WWW::Yandex::CY->new();
	$cy->site('http://jobs.su');
	my $get_cy = $cy->print();
	print $get_cy;


	# Obtaining through proxy

    #!/usr/bin/perl
    use strict;
    use WWW::Yandex::CY;
	my $cy = WWW::Yandex::CY->new();
	$cy->site('http://jobs.su');
	$cy->timeout('30');
	$cy->proxy('http://login:password\@server:port');
	$cy->agent('Mozilla/4.0');
	my $get_cy = $cy->print();
	print $get_cy;

DESCRIPTION

The WWW::Yandex::CY is a class implementing a interface for querying Yandex Thematic Index of Citing (TIC) for domain.

Obtaining domain value $cy->site('http://domain.ru');

Timeout (value in seconds) Default = 30 seconds $cy->timeout('30');

Proxy (Obtaining through proxy) Default = undef $cy->proxy('http://login:password\@server:port');

User Agent Default = Grep Yandex CY 2.0 $cy->agent('Mozilla/4.0');

AUTHOR

Kostya Ten <kostya@bk.ru>.

COPYRIGHT AND LICENSE

Copyright (C) 2006 by http://www.jobs.su/ All Rights Reserved.

You may use, modify, and distribute this package under the same terms as Perl itself.