Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
bladx,
I've got a suggestion or two for you:
  1. oanda doesn't like lowercase currency abbreviations. To be on the safe side, I'd do a uc on $cf and $ct.
  2. If someone tries this out, and they're behind a firewall (like me), it's not going to work. For those behind firewalls, I offer the following:
#!/usr/local/bin/perl -w use strict; use LWP::UserAgent; use HTTP::Request::Common; my ($amount,$cf,$ct) = @ARGV[0..2]; my $request = GET "http://www.oanda.com/converter/classic?value=" . "$amount&exch=" . uc($cf) . "&expr=" . uc($ct); $request->proxy_authorization_basic('username','password'); (my $ua = (new LWP::UserAgent))->proxy('http','http://yourproxyhere.co +m:1080'); my $resp = $ua->request($request); die $resp->status_line if ($resp->is_error()); $_ = $resp->{_content}; s/^.*<!-- conversion result starts//s; s/<!-- conversion result ends.*$//s; s/<[^>]+>//g; s/[ \n]+/ /gs; print $_, "\n"
You'll need to change username and password to your username/password for the proxy server. If you don't need to authenticate yourself, you can just skip the proxy_authorization_basic. You'll also need to change http://yourproxyhere.com:1080 to the name/port of your proxy server.
I believe the original currency converter was in the article Five Quick Hacks: Downloading Web Pages, in TPJ #13, by Jon Orwant and Dan Gruhl. The modified code above is based on Downloading Web Pages Through A Proxy Server in TPJ #14, by, um, me.
Happy converting (within the bounds of the Terms of Use pointed out by myocom)!

- robsv

In reply to Re: Currency Exchange Grabber by robsv
in thread Currency Exchange Grabber by bladx

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-19 05:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found