summaryrefslogtreecommitdiffstats
path: root/kachelmann/conditions
diff options
context:
space:
mode:
authortv <tv@also>2011-08-06 01:38:21 +0200
committertv <tv@also>2011-08-06 01:38:21 +0200
commit3dac8e5f4271d12c98de59f1fafe87092650402b (patch)
treeb255736295f46214288980807db7d793984ff0e0 /kachelmann/conditions
parentb1931782376899c56ebf6c989f34f750c0e3cb3a (diff)
parent4500675b3871a5683e08f4c7de4d69c5a1a0b3d7 (diff)
Merge branch 'master' of github.com:krebscode/painload
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..6d8b5541
--- /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 Celsius\n";
+system("espeak \"$sentence\"");