IntroductionΒΆ

[1]:
import ipyscales
[9]:
# Make a default scale, and list its trait values:
scale = ipyscales.LinearScale()
print(', '.join('%s: %s' % (key, getattr(scale, key)) for key in sorted(scale.keys) if not key.startswith('_')))
clamp: False, domain: (0.0, 1.0), interpolator: interpolate, range: (0.0, 1.0)