summaryrefslogtreecommitdiffstats
path: root/kachelmann/conditions
blob: 1a798e42f987c1c250d32760bf9c52b281371887 (plain)
1
2
3
4
5
6
7
#!/usr/bin/perl
use XML::Simple;
system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > /tmp/kachelmann/weather.xml");
my $xml = new XML::Simple;
my $data = $xml->XMLin("/tmp/kachelmann/weather.xml");
my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Zelsius\n";
system("espeak -v de \"$sentence\"");