<tvrsh> !rates
<@bionic> Name - Last - Open - High - Low - Net chg. - Chg. % Last Time
<@bionic> EUR/USD - 1.2996 - 1.2998 - 1.3000 - 1.2996 - -0.0002 - -0.01 - 19:10:54
<@bionic> USD/JPY - 100.4800 - 100.4955 - 100.5055 - 100.3750 - -0.0200 - -0.02 - 19:11:33
<@bionic> EUR/JPY - 130.5850 - 130.5900 - 130.6305 - 130.5050 - 0.0050 - 0.00 - 19:10:51
bind pub - !rates fx
set needrates "EUR/USD USD/JPY EUR/JPY"
proc fx {nick uhost hand chan text} {
global needrates
::http::config -useragent "UserAgent"
set tok [::http::geturl "http://www.fxstreet.com/rates-charts/currency-rates/" -timeout 15000]
set data [::http::data $tok]
::http::cleanup $tok
regsub -all -- {\n} $data "" data
regsub -all -- {\s+} $data " " data
putserv "PRIVMSG $chan :Name - Last - Open - High - Low - Net chg. - Chg. % Last Time"
regexp -- {<table width="100%" style="cursor:pointer">(.*?)</table>} $data "" a
regsub -all -- {</tr>} $a "|" a
regsub -all -- {<td.*?>} $a "" a
foreach line [lrange [split $a "|"] 1 end] {
regexp -- {<tr .*?> (.*?)</td> (.*?)</td> (.*?)</td> (.*?)</td> (.*?)</td> (.*?)</td> (.*?)</td> (.*?)</td>} $line "" b c d e f g h j
foreach rate [split $needrates " "] {
if {$b == $rate} {
putserv "PRIVMSG $chan :$b - $c - $d - $e - $f - $g - $h - $j"
}
}
}
}
Show only first 10 results. See
to change it.