package require http
bind pub - !superlig superlig
proc superlig {nick uhost hand chan text} {
set t [::http::geturl http://sporistatistik.hurriyet.com.tr/]
set data [::http::data $t]
::http::cleanup $t
set l [regexp -all -inline -- {<div class="PuanDurumuBaslik FL">(.*?)</div>.*?<div class="PuanDurumuPuan FL">(.*?)</div>.*?<div class="PuanDurumuPuan FL">(.*?)</div>.*?<div class="PuanDurumuPuan FL">(.*?)</div>.*?<div class="PuanDurumuPuan FL">(.*?)</div>.*?<div class="PuanDurumuPuan FL">(.*?)</div>.*?<div class="PuanDurumuPuan FL">(.*?)</div>.*?<div class="PuanDurumuPuan_2 FL">(.*?)</div>} $data]
foreach {black a b c d e f g h} $l {
set a [string trim $a " \n"]
set b [string trim $b " \n"]
set c [string trim $c " \n"]
set d [string trim $d " \n"]
set e [string trim $e " \n"]
set f [string trim $f " \n"]
set g [string trim $g " \n"]
set h [string trim $h " \n"]
regsub -all {<.+?>} $a {} a
regsub -all {<.+?>} $b {} b
regsub -all {<.+?>} $c {} c
regsub -all {<.+?>} $d {} d
regsub -all {<.+?>} $e {} e
regsub -all {<.+?>} $f {} f
regsub -all {<.+?>} $g {} g
regsub -all {<.+?>} $h {} h
putserv "PRIVMSG $chan : $a $b $c $d $e $f $g $h "
}
}