summaryrefslogtreecommitdiffstats
path: root/kachelmann
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-08-07 16:00:57 +0200
committermakefu <github@syntax-fehler.de>2011-08-07 16:00:57 +0200
commit74b400f10a7adafd8ce5b1644a6b500d4e5089ed (patch)
tree29417f11cbec3fc241fde60991cff8f7e3cba080 /kachelmann
parent08f27d02e568d028eba22726005924689f7d0de6 (diff)
kachelmann: remove need for tempfile
TODO: the Makefile needs to be fixed though
Diffstat (limited to 'kachelmann')
-rwxr-xr-xkachelmann/conditions7
1 files changed, 3 insertions, 4 deletions
diff --git a/kachelmann/conditions b/kachelmann/conditions
index 1a798e42..ea4ba5ca 100755
--- a/kachelmann/conditions
+++ b/kachelmann/conditions
@@ -1,7 +1,6 @@
#!/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 $result = `w3m -dump "http://www.google.com/ig/api?weather=70327-stuttgart&hl=de"`;
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\"");
+my $data = $xml->XMLin($result);
+print ("Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Zelsius\n");