Arduino Yun and Bridge Python

Ok thank for all your answers I "solved" my problem but a strange thing just appear! I included a new port (for Arduino) into the .py files and it work ;).
( btw: When I run with the Internal Console my Python Code I've still have Errno 10061, can't explain this...)

But now I've something new :relaxed:.
On the Arduino Side I've this code:
#include <Bridge.h>
int Pin = 1;
String key = "Test";
int Value;
void setup() {

  • Bridge.begin();*
    }
    void loop() {
  • Value = analogRead(Pin);*
  • Bridge.put(key, String(Value));*
  • delay(1000);*
    }

I want to store my analogic data into the Linux processor, so I've to get them back on Windows with my Python code with a get():

import sys
sys.path.insert(0, 'D:\Delmas.xy\startups\Bridge')
from bridgeclient import BridgeClient as bridgeclient
value = bridgeclient()
value.get('key')
print value.get('key')

Instead of print a value of my sensor I've got a "None". Did I do a misunderstood of the put() and get() function?