summaryrefslogtreecommitdiffstats
path: root/kachelmann/conditions.pl
diff options
context:
space:
mode:
authorroot <root@krebs>2011-08-06 00:25:26 +0200
committerroot <root@krebs>2011-08-06 00:25:26 +0200
commit6f683003c47c43c8842c071f81898c36ff348ce0 (patch)
tree3da01030953385c0ad12785953d58aeba39bb8a2 /kachelmann/conditions.pl
parent00711114cdcdb73f426f6da7ab68722a1d9c0470 (diff)
Added Kachelmann for weathermonitoring
Diffstat (limited to 'kachelmann/conditions.pl')
-rwxr-xr-xkachelmann/conditions.pl7
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\"");