Skip to main content

[wx]Python event programming framework

Project description

https://git.fmrib.ox.ac.uk/fsl/fsleyes/props/badges/master/pipeline.svg https://git.fmrib.ox.ac.uk/fsl/fsleyes/props/badges/master/coverage.svg https://img.shields.io/pypi/v/fsleyes-props.svg https://anaconda.org/conda-forge/fsleyes-props/badges/version.svg

fsleyes-props is a library which is used by used by FSLeyes, and which allows you to:

  • Listen for change to attributes on a python object,

  • Automatically generate wxpython widgets which are bound to attributes of a python object

  • Automatically generate a command line interface to set values of the attributes of a python object.

To do this, you just need to subclass the fsleyes_props.HasProperties class (also available as fsleyes_props.Props), and add some PropertyBase types as class attributes.

Installation

You can install fsleyes-props via pip. If you are using Linux, you need to install wxPython first, as binaries are not available on PyPI. Change the URL for your specific platform:

pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk2/ubuntu-16.04/ wxpython

Then install fsleyes-props like so:

pip install fsleyes-props

fsleyes-props is also available on conda-forge:

conda install -c conda-forge fsleyes-props

Dependencies

All of the dependencies of fsleyes-props are listed in the pyproject.toml file. fsleyes-props can be used without wxPython, but GUI functionality will not be available.

Dependencies for running the tests and building documentation are listed as extra test and doc dependencies, and can be installed with pip like so:

pip install fsleyes-props[doc,test]

Documentation

The fsleyes-props API documentation is hosted at https://open.win.ox.ac.uk/pages/fsl/fsleyes/props/.

fsleyes-props is documented using sphinx. You can build the API documentation by running:

sphinx-build doc html

The HTML documentation will be generated and saved in the html/ directory.

Tests

Run the test suite via:

pytest

Many of the tests assume that a display is accessible - if you are running on a headless machine, you may need to run the tests using xvfb-run.

Example usage

>>> import fsleyes_props as props
>>>
>>> class PropObj(props.Props):
>>>     myProperty = props.Boolean()
>>>
>>> myPropObj = PropObj()
>>>
>>> # Access the property value as a normal attribute:
>>> myPropObj.myProperty = True
>>> myPropObj.myProperty
True
>>>
>>> # Receive notification of property value changes
>>> def myPropertyChanged(value, *args):
>>>     print(f'New property value: {value}')
>>>
>>> myPropObj.listen('myProperty', 'myListener', myPropertyChanged)
>>>
>>> myPropObj.myProperty = False
New property value: False
>>>
>>> # Remove a previously added listener
>>> myPropObj.remove('myListener')

Contributing

If you would like to contribute to fsleyes-props, take a look at the fslpy contributing guide.

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

fsleyes_props-1.13.0.tar.gz (130.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fsleyes_props-1.13.0-py3-none-any.whl (129.5 kB view details)

Uploaded Python 3

File details

Details for the file fsleyes_props-1.13.0.tar.gz.

File metadata

  • Download URL: fsleyes_props-1.13.0.tar.gz
  • Upload date:
  • Size: 130.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for fsleyes_props-1.13.0.tar.gz
Algorithm Hash digest
SHA256 39de4421edb931eea56de5732960bd9def9c91b355f07fe8c12152c535a211c9
MD5 5e439d9acf28e829c8687ac153bc85dd
BLAKE2b-256 de82d3892e08a1b422f268e139831d0525fdfdd6d468ddd9d623f75dc9b84161

See more details on using hashes here.

File details

Details for the file fsleyes_props-1.13.0-py3-none-any.whl.

File metadata

  • Download URL: fsleyes_props-1.13.0-py3-none-any.whl
  • Upload date:
  • Size: 129.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for fsleyes_props-1.13.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f1d099ad0f8e88f60a337e3963c024cca073fb386885971772cafe351e508762
MD5 323878a2ffd8567fc65845940c713ae2
BLAKE2b-256 e5b6bdceb6e7ca8fb9d57d9238afc1b806dce0c9bc6ca58ad154f341bd481715

See more details on using hashes here.

Supported by

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