summaryrefslogtreecommitdiffstats
path: root/kachelmann/conditions
diff options
context:
space:
mode:
Diffstat (limited to 'kachelmann/conditions')
-rwxr-xr-xkachelmann/conditions6
1 files changed, 6 insertions, 0 deletions
diff --git a/kachelmann/conditions b/kachelmann/conditions
new file mode 100755
index 00000000..ea4ba5ca
--- /dev/null
+++ b/kachelmann/conditions
@@ -0,0 +1,6 @@
+#!/usr/bin/perl
+use XML::Simple;
+my $result = `w3m -dump "http://www.google.com/ig/api?weather=70327-stuttgart&hl=de"`;
+my $xml = new XML::Simple;
+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");