This is the spanish-english version. It's not currently working because they just changed the user interface to the site. Note that the only significant difference to my webster client is that this one uses the POST protocol. Feel free to contact me if you run into any problems.
#!/usr/bin/perl -w use HTML::TreeBuilder; use HTML::FormatText; $|=1; # Asynchronous I/O. use LWP::UserAgent; my $ua = new LWP::UserAgent; my $ua->agent("Diccionario"); #$ua->proxy([ 'http' ], 'http://www-dms.esd.sgi.com:8080/'); # # Create a new request. # my $req = new HTTP::Request POST => "http://www.anaya.es/dicc/dicc/VOX +ESPResult.html"; $req->content_type('application/x-www-form-urlencoded'); $req->content("TipoBusqueda=Emp&Entrada=$ARGV[0]&MaxFilas=10"); # # Pass Request to the user agent and get a response back. # my $res = $ua->request($req); # # Print outcome of the response. # if(! $res->is_success) { print "Failure to connect to server: " . $res->message; } else { $html = $res->content; $p = HTML::TreeBuilder->new; $p->parse($html); $formatter = HTML::FormatText->new(leftmargin => 0, rightmargin => 6 +0); $result = $formatter->format($p); @parrafos = split /^\s+/m, $result; for($x=1; !($parrafos[$x] =~ /^\[FORM/) and $x < 10; $x++) { print $parrafos[$x]."\n" if !($parrafos[$x] =~ /^----/); } }

In reply to RE: webster client by gregorovius
in thread webster client by gregorovius

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.