1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# Scipy Trait Types
[](https://travis-ci.org/jupyter-widgets/traittypes)
[](http://traittypes.readthedocs.org/en/latest/?badge=latest)
Trait types for NumPy, SciPy and friends
## Goals
Provide a reference implementation of trait types for common data structures
used in the scipy stack such as
- [numpy](https://github.com/numpy/numpy) arrays
- [pandas](https://github.com/pydata/pandas) and [xarray](https://github.com/pydata/xarray) data structures
which are out of the scope of the main [traitlets](https://github.com/ipython/traitlets)
project but are a common requirement to build applications with traitlets in
combination with the scipy stack.
Another goal is to create adequate serialization and deserialization routines
for these trait types to be used with the [ipywidgets](https://github.com/ipython/ipywidgets)
project (`to_json` and `from_json`). These could also return a list of binary
buffers as allowed by the current messaging protocol.
## Installation
Using `pip`:
Make sure you have [pip installed](https://pip.readthedocs.org/en/stable/installing/) and run:
```
pip install traittypes
```
Using `conda`:
```
conda install -c conda-forge traittypes
```
## Usage
`traittypes` extends the `traitlets` library with an implementation of trait types for numpy arrays, pandas dataframes, pandas series, xarray datasets and xarray dataarrays.
- `traittypes` works around some limitations with numpy array comparison to only trigger change events when necessary.
- `traittypes` also extends the traitlets API for adding custom validators to constained proposed values for the attribute.
For a general introduction to `traitlets`, check out the [traitlets documentation](https://traitlets.readthedocs.io/en/stable/).
### Example usage with a custom validator
```python
from traitlets import HasTraits, TraitError
from traittypes import Array
def shape(*dimensions):
def validator(trait, value):
if value.shape != dimensions:
raise TraitError('Expected an of shape %s and got and array with shape %s' % (dimensions, value.shape))
else:
return value
return validator
class Foo(HasTraits):
bar = Array(np.identity(2)).valid(shape(2, 2))
foo = Foo()
foo.bar = [1, 2] # Should raise a TraitError
```
|