https://github.com/biolab/orange3-example-addon
Example Addon for Orange3
https://github.com/biolab/orange3-example-addon
Last synced: 9 months ago
JSON representation
Example Addon for Orange3
- Host: GitHub
- URL: https://github.com/biolab/orange3-example-addon
- Owner: biolab
- Created: 2015-04-10T06:48:29.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2022-03-06T21:21:30.000Z (over 4 years ago)
- Last Synced: 2025-08-14T17:53:20.525Z (10 months ago)
- Language: Python
- Size: 95.7 KB
- Stars: 56
- Watchers: 11
- Forks: 49
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Orange3 Example Add-on
======================
This is an example add-on for [Orange3](http://orange.biolab.si). Add-on can extend Orange either
in scripting or GUI part, or in both. We here focus on the GUI part and implement a simple (empty) widget,
register it with Orange and add a new workflow with this widget to example tutorials.
Installation
------------
To install the add-on from source run
pip install .
To register this add-on with Orange, but keep the code in the development directory (do not copy it to
Python's site-packages directory), run
pip install -e .
Documentation / widget help can be built by running
make html htmlhelp
from the doc directory.
Usage
-----
After the installation, the widget from this add-on is registered with Orange. To run Orange from the terminal,
use
orange-canvas
or
python -m Orange.canvas
The new widget appears in the toolbox bar under the section Example.
