Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neilb/net-dict
The Net::Dict module for Perl, which talks the DICT protocol (RFC 2229)
https://github.com/neilb/net-dict
perl
Last synced: about 2 months ago
JSON representation
The Net::Dict module for Perl, which talks the DICT protocol (RFC 2229)
- Host: GitHub
- URL: https://github.com/neilb/net-dict
- Owner: neilb
- Created: 2010-11-12T07:26:33.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2021-06-08T15:35:27.000Z (over 3 years ago)
- Last Synced: 2024-10-11T21:08:53.857Z (2 months ago)
- Topics: perl
- Language: Perl
- Homepage:
- Size: 98.6 KB
- Stars: 9
- Watchers: 5
- Forks: 8
- Open Issues: 5
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
Net::Dict
This distribution contains the Net::Dict module for Perl.
Net::Dict is a class implementing a simple client API
for the DICT protocol defined in RFC2229.To install this module, you should just have to run the following:
% perl Makefile.PL
% make
% make test
% make installWhen you run "perl Makefile.PL" you'll be asked for the hostname
and port for the DICT server used when testing. If you're not
going to run "make install", then just press return. You should
be able to just press return on the two questions anyway.This module now supports the AUTH optional capability. To use this
you will need the Digest::MD5 module, available from CPAN.The module is documented using pod. When you "make install", you
will get a man-page Net::Dict. You can also generate HTML using pod2html:% pod2html lib/Net/Dict.pm
Three sample clients are included in this distribution.
Any additional modules required are noted, and available from CPAN.dict
A basic command-line client, based on the C dict client
by Rik Faith.
Requires: AppConfig, AppConfig::Stdtkdict
A first cut at a Perl/Tk client. This is pretty rough;
any suggestions or patches are welcome!
Requires: AppConfig, AppConfig::Std, Tk, Tk::Dialogexamples/simple.pl
Illustrates basic use of Net::Dict.Net::Dict was written by Dmitry Rubinstein, but is now maintained by me.
Neil Bowers