summaryrefslogtreecommitdiffstats
path: root/god/kachelmann/wetter
blob: 957e13e24789c2c371c8caae34d8140bf1029b5e (plain)
1
2
3
4
5
6
#!/usr/bin/perl
use XML::Simple;
my $result = `w3m -dump "http://www.google.com/ig/api?weather=70327-stuttgart&hl=de"`;
my $xml = new XML::Simple;
my $data = $xml->XMLin($result);
print ("$data->{weather}->{current_conditions}->{condition}->{data} bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Zelsius\n");