summaryrefslogtreecommitdiffstats
path: root/kachelmann/conditions.pl
diff options
context:
space:
mode:
authorroot <root@krebs>2011-08-06 00:25:26 +0200
committerroot <root@krebs>2011-08-06 00:25:26 +0200
commit2703d8bce03216e97e3bb3bd975ed15a050cce84 (patch)
treecac8b0e30d77b678defffd513f0005f14daf8cd0 /kachelmann/conditions.pl
parent02cc5f54ebd9ef7ff3b989ebdc944fae7dec3c91 (diff)
Added Kachelmann for weathermonitoring
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\"");