I managed to build a small python script as proof of concept.
I located the correct address for my sensor data through the Dash on the flukso website. If you are monitoring on minute, the flukso gets its data from the lokal network. In my web browser I retreived the correct link via pagesources(safari) for my flukso:
http://10.0.1.11:8080/sensor/345487e1fa2e73c5d6a166e4190da13a?callback=j...
This link works in a standard web browser, and outputs the last 60 stored values in the flukso.
jQuery17106542406435369124_1359410073538([[1359489910,265],[1359489911,267],[1359489912,267],[1359489913,268],[1359489914,267],[135 ...... 9489965,276],[1359489966,276],[1359489967,276],[1359489968,277],[1359489969,278]]);
I only need the last one. so i wrote the attached script to filter it out. There will be better ways to do it, please feel free to improve it.
#!
import urllib2
import time
begin_teller = 0
eind_teller = 0
three_digit = 0
var = 1
while var == 1: # infinite loop
time.sleep(2) # wait two seconds, don't need the data quicker.
for line in urllib2.urlopen('http://10.0.1.11:8080/sensor/365487e4fa2e73c5d6a166e4190da13a?callback=jQuery17106542406445369124_1359410073538&version=1.0&interval=minute&resolution=second&unit=watt&_=1359410093774'): # read the data from the flukso
begin_teller = len(line)-8 #start and end position for the wanted data
eind_teller = len(line)-4
three_digit = len(line)-7
if line[begin_teller:three_digit] == ",": # if the character in this position is a "," then we read 3 digits
print line[three_digit:eind_teller]
else: # else read four digits
print line[begin_teller:eind_teller]
print "good Night" # end of loop
Hope is is useful, next i will try to get the data using my arduino.