diff options
author | root <root@krebs> | 2011-08-06 00:25:26 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-08-06 00:25:26 +0200 |
commit | 2f896d02d13eab9d587a8dfd90b6300b1a338716 (patch) | |
tree | e7992226fc435e44301bdd3600c9f6c6dd24db42 /kachelmann/conditions.pl | |
parent | 5af29be38319d819778a117248af04b94beb65f9 (diff) |
Added Kachelmann for weathermonitoring
Diffstat (limited to 'kachelmann/conditions.pl')
-rwxr-xr-x | kachelmann/conditions.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kachelmann/conditions.pl b/kachelmann/conditions.pl new file mode 100755 index 00000000..61c43330 --- /dev/null +++ b/kachelmann/conditions.pl @@ -0,0 +1,7 @@ +#!/usr/bin/perl +use XML::Simple; +system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > weather.xml"); +my $xml = new XML::Simple; +my $data = $xml->XMLin("weather.xml"); +my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Celsius\n"; +system("espeak \"$sentence\""); |