Skip to main content

A fork to traitlets' link and dlink to link traits in addition to traitlets.

Project description

Build Status Codecov branch

link_traits is a fork of traitlets’ link and dlink functions to add the ability to link traits in addition to traitlets.

Installation

Make sure you have pip installed and run:

pip install link_traits

link_traits depends on traits which is not a pure Python package. In Anaconda you can install traits from conda forge before install link_traits as above:

conda install traits -c conda-forge

Running the tests

py.test is required to run the tests.

pip install "link_traits[test]"
py.test --pyargs traitlets

Usage

import traits.api as t
import traitlets
from link_traits import link

class A(t.HasTraits):
    a = t.Int()

class B(traitlets.HasTraits):
    b = t.Int()
a = A()
b = B()
l = link((a, "a"), (b, "b"))
>>> a.a = 3
>>> b.b
3

Development

Contributions through pull requests are welcome. The intention is to keep the syntax and features in sync with the original traitlets’ link and dlink functions. Therefore, before contributing a new feature here, please contribute it to traitlets first.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

link_traits-1.0.1.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

link_traits-1.0.1-py2.py3-none-any.whl (7.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page