diff options
author | tv <tv@also> | 2011-08-06 01:38:21 +0200 |
---|---|---|
committer | tv <tv@also> | 2011-08-06 01:38:21 +0200 |
commit | dacc977554923de00a08422c0e391d9bca5190f6 (patch) | |
tree | e4d0b94521f5da1ea3c6993a6d4434f3bb552103 /kachelmann/conditions | |
parent | 1aa87309b863de8d91786dc7757d4bc460c96669 (diff) | |
parent | 699f1cba963131518f62c51dbab4d9e4ce35152a (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'kachelmann/conditions')
-rwxr-xr-x | kachelmann/conditions | 7 |
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\""); |