summaryrefslogtreecommitdiffstats
path: root/kachelmann/conditions.pl
diff options
context:
space:
mode:
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\"");