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
commitdbefb844577d85a48675e598ef04c4590661952f (patch)
tree587c0edab38e878bc16e8518d190522bbca5a3f4 /kachelmann/conditions.pl
parent2df7262c4805af1cb70c5f98578d7e03fc4a07d3 (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\"");