summaryrefslogtreecommitdiffstats
path: root/kachelmann/conditions
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-08-06 01:56:55 +0200
committermakefu <github@syntax-fehler.de>2011-08-06 01:56:55 +0200
commit1ad16dbc44ae38431b30ad32be9de75ac59806f2 (patch)
tree6c44b6a143715fbcc7daaf39bc3542dea1da759d /kachelmann/conditions
parent1a3e702fe07968a884462cfae82fb0bfce9123c6 (diff)
parent1a602de75dfac88f9b4b59096111fd94429b70ea (diff)
emergency merge
Diffstat (limited to 'kachelmann/conditions')
-rwxr-xr-xkachelmann/conditions7
1 files changed, 7 insertions, 0 deletions
diff --git a/kachelmann/conditions b/kachelmann/conditions
new file mode 100755
index 00000000..1a798e42
--- /dev/null
+++ b/kachelmann/conditions
@@ -0,0 +1,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\"");