In [5]:
from livecoder.widgets import Livecoder
from IPython.utils.traitlets import Float

In [6]:
class MyCoder(Livecoder):
    x = Float(sync=True)

In [7]:
live = MyCoder()
live

In [9]:
live.x = 3

In [ ]: