├── .flake8 ├── .github └── workflows │ ├── flake8.yaml │ ├── formatting.yaml │ └── pytest.yaml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── code_architecture.md ├── demo ├── audio │ ├── elephant.mp4 │ ├── rabbit.mp4 │ └── snail.mp4 ├── images │ ├── elephant.png │ ├── pause.png │ ├── rabbit.png │ └── snail.png ├── jukebox.py ├── multi_image.ipynb └── multi_image.py ├── doc └── images │ ├── demo_multi_image.gif │ ├── gradio_backend.jpg │ ├── image_selector.png │ ├── image_selector_graph.png │ ├── isp_pipeline.png │ ├── jukebox.jpg │ ├── jupyter_integration_speech.png │ ├── mpl_backend.jpg │ ├── notebook_backend.jpg │ ├── qt_backend.jpg │ ├── scientific_notebook.jpg │ └── tutorial.png ├── index.html ├── isort.cfg ├── pyproject.toml ├── readme.md ├── requirements.txt ├── samples ├── decorated_pipeline.py ├── decorated_pipeline_abbreviated.py ├── interact_sample │ ├── filters_library.py │ ├── interact_sample.py │ └── test_filter_library.py ├── object_oriented_pipeline_declarations.py └── readme.md ├── src └── interactive_pipe │ ├── __init__.py │ ├── core │ ├── __init__.py │ ├── cache.py │ ├── engine.py │ ├── filter.py │ ├── graph.py │ ├── pipeline.py │ └── signature.py │ ├── data_objects │ ├── __init__.py │ ├── audio.py │ ├── curves.py │ ├── data.py │ ├── image.py │ └── parameters.py │ ├── graphical │ ├── __init__.py │ ├── gradio_control.py │ ├── gradio_gui.py │ ├── gui.py │ ├── mpl_control.py │ ├── mpl_gui.py │ ├── mpl_window.py │ ├── nb_control.py │ ├── nb_gui.py │ ├── qt_control.py │ ├── qt_gui.py │ └── window.py │ ├── headless │ ├── __init__.py │ ├── control.py │ ├── keyboard.py │ └── pipeline.py │ ├── helper │ ├── __init__.py │ ├── _private.py │ ├── choose_backend.py │ ├── control_abbreviation.py │ ├── filter_decorator.py │ ├── keyword_args_analyzer.py │ └── pipeline_decorator.py │ └── thirdparty │ ├── images_openai_api.py │ └── music_spotify.py ├── static ├── dynamic_pipe.png ├── gradio_demo.png ├── interact-pipe-concept.svg ├── interact-pipe-logo-horizontal-rgb.svg ├── interactive_pipe_logo.svg ├── interactive_pipe_preview.png ├── jupyter_notebook_demo.png ├── main-page.css ├── prism-duotone-light.css └── qt_demo.png └── test ├── sample_functions.py ├── test_cache.py ├── test_control_abbreviations.py ├── test_controller.py ├── test_core.py ├── test_curves.py ├── test_decorator.py ├── test_engine.py ├── test_filter.py ├── test_headless.py ├── test_image.py ├── test_parameters.py └── test_recorder.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/flake8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/.github/workflows/flake8.yaml -------------------------------------------------------------------------------- /.github/workflows/formatting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/.github/workflows/formatting.yaml -------------------------------------------------------------------------------- /.github/workflows/pytest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/.github/workflows/pytest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/LICENSE -------------------------------------------------------------------------------- /code_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/code_architecture.md -------------------------------------------------------------------------------- /demo/audio/elephant.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/audio/elephant.mp4 -------------------------------------------------------------------------------- /demo/audio/rabbit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/audio/rabbit.mp4 -------------------------------------------------------------------------------- /demo/audio/snail.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/audio/snail.mp4 -------------------------------------------------------------------------------- /demo/images/elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/images/elephant.png -------------------------------------------------------------------------------- /demo/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/images/pause.png -------------------------------------------------------------------------------- /demo/images/rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/images/rabbit.png -------------------------------------------------------------------------------- /demo/images/snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/images/snail.png -------------------------------------------------------------------------------- /demo/jukebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/jukebox.py -------------------------------------------------------------------------------- /demo/multi_image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/multi_image.ipynb -------------------------------------------------------------------------------- /demo/multi_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/demo/multi_image.py -------------------------------------------------------------------------------- /doc/images/demo_multi_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/demo_multi_image.gif -------------------------------------------------------------------------------- /doc/images/gradio_backend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/gradio_backend.jpg -------------------------------------------------------------------------------- /doc/images/image_selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/image_selector.png -------------------------------------------------------------------------------- /doc/images/image_selector_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/image_selector_graph.png -------------------------------------------------------------------------------- /doc/images/isp_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/isp_pipeline.png -------------------------------------------------------------------------------- /doc/images/jukebox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/jukebox.jpg -------------------------------------------------------------------------------- /doc/images/jupyter_integration_speech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/jupyter_integration_speech.png -------------------------------------------------------------------------------- /doc/images/mpl_backend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/mpl_backend.jpg -------------------------------------------------------------------------------- /doc/images/notebook_backend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/notebook_backend.jpg -------------------------------------------------------------------------------- /doc/images/qt_backend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/qt_backend.jpg -------------------------------------------------------------------------------- /doc/images/scientific_notebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/scientific_notebook.jpg -------------------------------------------------------------------------------- /doc/images/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/doc/images/tutorial.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/index.html -------------------------------------------------------------------------------- /isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | line_length = 119 -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/decorated_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/samples/decorated_pipeline.py -------------------------------------------------------------------------------- /samples/decorated_pipeline_abbreviated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/samples/decorated_pipeline_abbreviated.py -------------------------------------------------------------------------------- /samples/interact_sample/filters_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/samples/interact_sample/filters_library.py -------------------------------------------------------------------------------- /samples/interact_sample/interact_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/samples/interact_sample/interact_sample.py -------------------------------------------------------------------------------- /samples/interact_sample/test_filter_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/samples/interact_sample/test_filter_library.py -------------------------------------------------------------------------------- /samples/object_oriented_pipeline_declarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/samples/object_oriented_pipeline_declarations.py -------------------------------------------------------------------------------- /samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/samples/readme.md -------------------------------------------------------------------------------- /src/interactive_pipe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/__init__.py -------------------------------------------------------------------------------- /src/interactive_pipe/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interactive_pipe/core/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/core/cache.py -------------------------------------------------------------------------------- /src/interactive_pipe/core/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/core/engine.py -------------------------------------------------------------------------------- /src/interactive_pipe/core/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/core/filter.py -------------------------------------------------------------------------------- /src/interactive_pipe/core/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/core/graph.py -------------------------------------------------------------------------------- /src/interactive_pipe/core/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/core/pipeline.py -------------------------------------------------------------------------------- /src/interactive_pipe/core/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/core/signature.py -------------------------------------------------------------------------------- /src/interactive_pipe/data_objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interactive_pipe/data_objects/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/data_objects/audio.py -------------------------------------------------------------------------------- /src/interactive_pipe/data_objects/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/data_objects/curves.py -------------------------------------------------------------------------------- /src/interactive_pipe/data_objects/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/data_objects/data.py -------------------------------------------------------------------------------- /src/interactive_pipe/data_objects/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/data_objects/image.py -------------------------------------------------------------------------------- /src/interactive_pipe/data_objects/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/data_objects/parameters.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/gradio_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/gradio_control.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/gradio_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/gradio_gui.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/gui.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/mpl_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/mpl_control.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/mpl_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/mpl_gui.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/mpl_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/mpl_window.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/nb_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/nb_control.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/nb_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/nb_gui.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/qt_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/qt_control.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/qt_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/qt_gui.py -------------------------------------------------------------------------------- /src/interactive_pipe/graphical/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/graphical/window.py -------------------------------------------------------------------------------- /src/interactive_pipe/headless/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interactive_pipe/headless/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/headless/control.py -------------------------------------------------------------------------------- /src/interactive_pipe/headless/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/headless/keyboard.py -------------------------------------------------------------------------------- /src/interactive_pipe/headless/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/headless/pipeline.py -------------------------------------------------------------------------------- /src/interactive_pipe/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/interactive_pipe/helper/_private.py: -------------------------------------------------------------------------------- 1 | registered_controls_names = [] 2 | auto_gui = None 3 | -------------------------------------------------------------------------------- /src/interactive_pipe/helper/choose_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/helper/choose_backend.py -------------------------------------------------------------------------------- /src/interactive_pipe/helper/control_abbreviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/helper/control_abbreviation.py -------------------------------------------------------------------------------- /src/interactive_pipe/helper/filter_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/helper/filter_decorator.py -------------------------------------------------------------------------------- /src/interactive_pipe/helper/keyword_args_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/helper/keyword_args_analyzer.py -------------------------------------------------------------------------------- /src/interactive_pipe/helper/pipeline_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/helper/pipeline_decorator.py -------------------------------------------------------------------------------- /src/interactive_pipe/thirdparty/images_openai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/thirdparty/images_openai_api.py -------------------------------------------------------------------------------- /src/interactive_pipe/thirdparty/music_spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/src/interactive_pipe/thirdparty/music_spotify.py -------------------------------------------------------------------------------- /static/dynamic_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/dynamic_pipe.png -------------------------------------------------------------------------------- /static/gradio_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/gradio_demo.png -------------------------------------------------------------------------------- /static/interact-pipe-concept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/interact-pipe-concept.svg -------------------------------------------------------------------------------- /static/interact-pipe-logo-horizontal-rgb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/interact-pipe-logo-horizontal-rgb.svg -------------------------------------------------------------------------------- /static/interactive_pipe_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/interactive_pipe_logo.svg -------------------------------------------------------------------------------- /static/interactive_pipe_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/interactive_pipe_preview.png -------------------------------------------------------------------------------- /static/jupyter_notebook_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/jupyter_notebook_demo.png -------------------------------------------------------------------------------- /static/main-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/main-page.css -------------------------------------------------------------------------------- /static/prism-duotone-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/prism-duotone-light.css -------------------------------------------------------------------------------- /static/qt_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/static/qt_demo.png -------------------------------------------------------------------------------- /test/sample_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/sample_functions.py -------------------------------------------------------------------------------- /test/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_cache.py -------------------------------------------------------------------------------- /test/test_control_abbreviations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_control_abbreviations.py -------------------------------------------------------------------------------- /test/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_controller.py -------------------------------------------------------------------------------- /test/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_core.py -------------------------------------------------------------------------------- /test/test_curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_curves.py -------------------------------------------------------------------------------- /test/test_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_decorator.py -------------------------------------------------------------------------------- /test/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_engine.py -------------------------------------------------------------------------------- /test/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_filter.py -------------------------------------------------------------------------------- /test/test_headless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_headless.py -------------------------------------------------------------------------------- /test/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_image.py -------------------------------------------------------------------------------- /test/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_parameters.py -------------------------------------------------------------------------------- /test/test_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balthazarneveu/interactive_pipe/HEAD/test/test_recorder.py --------------------------------------------------------------------------------