├── .gitignore ├── Builds ├── Linux │ └── Makefile └── MacOSX │ ├── Config │ ├── Plugin.xcconfig │ ├── Plugin.xcconfig.tmpl │ ├── Plugin_Debug.xcconfig │ ├── Plugin_Release.xcconfig │ └── get_depends.sh │ ├── PythonPlugin.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── PythonPlugin │ └── Info.plist ├── PythonPlugin ├── Info.plist ├── Makefile ├── OpenEphysLib.cpp ├── PythonEditor.cpp ├── PythonEditor.h ├── PythonEvent.h ├── PythonFilter.cpp ├── PythonFilter.h ├── PythonParamConfig.h ├── PythonPlugin ├── PythonPlugin.cpp ├── PythonPlugin.h ├── PythonSink.cpp ├── PythonSink.h ├── PythonSource.cpp └── PythonSource.h ├── README.md ├── WindowsPlugin ├── Python.vcxproj ├── Python.vcxproj.filters └── PythonEnv.props ├── examplePic1.png ├── images ├── demonstration.gif ├── examplePic1.png ├── examplePic2.png └── holder.txt └── python_modules ├── .config.py ├── Makefile.Linux ├── Makefile.OSX ├── Scripts ├── run_simple_plotter.py └── test_multiprocessing.py ├── generatePlugin.py ├── multiprocessing_plugin ├── __init__.py ├── basic_animation.py ├── multiprocessing_plugin.pyx ├── plot_mod.py ├── plot_subprocess.py ├── simple_plotter.py └── sliderplot.py ├── old_style_plugins ├── pulse_test_delay │ ├── .gitignore │ ├── __init__.py │ ├── delaytest.xml │ └── pulse_test_delay.pyx ├── spwdouble │ ├── .gitignore │ ├── __init__.py │ ├── get_test_data.py │ ├── spwdouble.pyx │ └── test_params.py ├── spwfinder │ ├── .gitignore │ ├── __init__.py │ ├── get_test_data.py │ ├── spwfinder.pyx │ ├── test1.ipynb │ └── test_params.py ├── spwrandom │ ├── .gitignore │ ├── __init__.py │ ├── get_test_data.py │ ├── spwrandom.pyx │ └── test_params.py └── swofinder │ ├── .gitignore │ ├── __init__.py │ ├── get_test_data.py │ └── swofinder.pyx ├── plugin.pyx ├── pulse_test_delay ├── pulse_test_delay.pyx └── setup.py ├── signal_plot ├── __init__.py ├── basic_animation.py ├── plot_mod.py ├── signal_plot.pyx ├── sliderplot.py └── test_signal_plot.py ├── spwdouble ├── setup.py └── spwdouble.pyx ├── spwfinder ├── setup.py └── spwfinder.pyx ├── spwrandom ├── setup.py └── spwrandom.pyx ├── template ├── setup.py └── template.pyx ├── test ├── setup.py └── test.pyx ├── test2 ├── setup.py └── test2.pyx └── testML ├── setup.py └── subClient.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Builds/Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/Linux/Makefile -------------------------------------------------------------------------------- /Builds/MacOSX/Config/Plugin.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/MacOSX/Config/Plugin.xcconfig -------------------------------------------------------------------------------- /Builds/MacOSX/Config/Plugin.xcconfig.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/MacOSX/Config/Plugin.xcconfig.tmpl -------------------------------------------------------------------------------- /Builds/MacOSX/Config/Plugin_Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/MacOSX/Config/Plugin_Debug.xcconfig -------------------------------------------------------------------------------- /Builds/MacOSX/Config/Plugin_Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/MacOSX/Config/Plugin_Release.xcconfig -------------------------------------------------------------------------------- /Builds/MacOSX/Config/get_depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/MacOSX/Config/get_depends.sh -------------------------------------------------------------------------------- /Builds/MacOSX/PythonPlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/MacOSX/PythonPlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Builds/MacOSX/PythonPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/MacOSX/PythonPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Builds/MacOSX/PythonPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/MacOSX/PythonPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Builds/MacOSX/PythonPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/Builds/MacOSX/PythonPlugin/Info.plist -------------------------------------------------------------------------------- /PythonPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/Info.plist -------------------------------------------------------------------------------- /PythonPlugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/Makefile -------------------------------------------------------------------------------- /PythonPlugin/OpenEphysLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/OpenEphysLib.cpp -------------------------------------------------------------------------------- /PythonPlugin/PythonEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonEditor.cpp -------------------------------------------------------------------------------- /PythonPlugin/PythonEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonEditor.h -------------------------------------------------------------------------------- /PythonPlugin/PythonEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonEvent.h -------------------------------------------------------------------------------- /PythonPlugin/PythonFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonFilter.cpp -------------------------------------------------------------------------------- /PythonPlugin/PythonFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonFilter.h -------------------------------------------------------------------------------- /PythonPlugin/PythonParamConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonParamConfig.h -------------------------------------------------------------------------------- /PythonPlugin/PythonPlugin: -------------------------------------------------------------------------------- 1 | ../../../PythonPlugin/PythonPlugin/ -------------------------------------------------------------------------------- /PythonPlugin/PythonPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonPlugin.cpp -------------------------------------------------------------------------------- /PythonPlugin/PythonPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonPlugin.h -------------------------------------------------------------------------------- /PythonPlugin/PythonSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonSink.cpp -------------------------------------------------------------------------------- /PythonPlugin/PythonSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonSink.h -------------------------------------------------------------------------------- /PythonPlugin/PythonSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonSource.cpp -------------------------------------------------------------------------------- /PythonPlugin/PythonSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/PythonPlugin/PythonSource.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/README.md -------------------------------------------------------------------------------- /WindowsPlugin/Python.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/WindowsPlugin/Python.vcxproj -------------------------------------------------------------------------------- /WindowsPlugin/Python.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/WindowsPlugin/Python.vcxproj.filters -------------------------------------------------------------------------------- /WindowsPlugin/PythonEnv.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/WindowsPlugin/PythonEnv.props -------------------------------------------------------------------------------- /examplePic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/examplePic1.png -------------------------------------------------------------------------------- /images/demonstration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/images/demonstration.gif -------------------------------------------------------------------------------- /images/examplePic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/images/examplePic1.png -------------------------------------------------------------------------------- /images/examplePic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/images/examplePic2.png -------------------------------------------------------------------------------- /images/holder.txt: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /python_modules/.config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/.config.py -------------------------------------------------------------------------------- /python_modules/Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/Makefile.Linux -------------------------------------------------------------------------------- /python_modules/Makefile.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/Makefile.OSX -------------------------------------------------------------------------------- /python_modules/Scripts/run_simple_plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/Scripts/run_simple_plotter.py -------------------------------------------------------------------------------- /python_modules/Scripts/test_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/Scripts/test_multiprocessing.py -------------------------------------------------------------------------------- /python_modules/generatePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/generatePlugin.py -------------------------------------------------------------------------------- /python_modules/multiprocessing_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'fpbatta' 2 | -------------------------------------------------------------------------------- /python_modules/multiprocessing_plugin/basic_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/multiprocessing_plugin/basic_animation.py -------------------------------------------------------------------------------- /python_modules/multiprocessing_plugin/multiprocessing_plugin.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/multiprocessing_plugin/multiprocessing_plugin.pyx -------------------------------------------------------------------------------- /python_modules/multiprocessing_plugin/plot_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/multiprocessing_plugin/plot_mod.py -------------------------------------------------------------------------------- /python_modules/multiprocessing_plugin/plot_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/multiprocessing_plugin/plot_subprocess.py -------------------------------------------------------------------------------- /python_modules/multiprocessing_plugin/simple_plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/multiprocessing_plugin/simple_plotter.py -------------------------------------------------------------------------------- /python_modules/multiprocessing_plugin/sliderplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/multiprocessing_plugin/sliderplot.py -------------------------------------------------------------------------------- /python_modules/old_style_plugins/pulse_test_delay/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/pulse_test_delay/.gitignore -------------------------------------------------------------------------------- /python_modules/old_style_plugins/pulse_test_delay/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'fpbatta' 2 | -------------------------------------------------------------------------------- /python_modules/old_style_plugins/pulse_test_delay/delaytest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/pulse_test_delay/delaytest.xml -------------------------------------------------------------------------------- /python_modules/old_style_plugins/pulse_test_delay/pulse_test_delay.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/pulse_test_delay/pulse_test_delay.pyx -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwdouble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwdouble/.gitignore -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwdouble/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'fpbatta' 2 | -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwdouble/get_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwdouble/get_test_data.py -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwdouble/spwdouble.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwdouble/spwdouble.pyx -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwdouble/test_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwdouble/test_params.py -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwfinder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwfinder/.gitignore -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwfinder/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'fpbatta' 2 | -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwfinder/get_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwfinder/get_test_data.py -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwfinder/spwfinder.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwfinder/spwfinder.pyx -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwfinder/test1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwfinder/test1.ipynb -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwfinder/test_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwfinder/test_params.py -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwrandom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwrandom/.gitignore -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwrandom/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'fpbatta' 2 | -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwrandom/get_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwrandom/get_test_data.py -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwrandom/spwrandom.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwrandom/spwrandom.pyx -------------------------------------------------------------------------------- /python_modules/old_style_plugins/spwrandom/test_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/spwrandom/test_params.py -------------------------------------------------------------------------------- /python_modules/old_style_plugins/swofinder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/swofinder/.gitignore -------------------------------------------------------------------------------- /python_modules/old_style_plugins/swofinder/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'fpbatta' 2 | -------------------------------------------------------------------------------- /python_modules/old_style_plugins/swofinder/get_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/swofinder/get_test_data.py -------------------------------------------------------------------------------- /python_modules/old_style_plugins/swofinder/swofinder.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/old_style_plugins/swofinder/swofinder.pyx -------------------------------------------------------------------------------- /python_modules/plugin.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/plugin.pyx -------------------------------------------------------------------------------- /python_modules/pulse_test_delay/pulse_test_delay.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/pulse_test_delay/pulse_test_delay.pyx -------------------------------------------------------------------------------- /python_modules/pulse_test_delay/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/pulse_test_delay/setup.py -------------------------------------------------------------------------------- /python_modules/signal_plot/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'fpbatta' 2 | -------------------------------------------------------------------------------- /python_modules/signal_plot/basic_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/signal_plot/basic_animation.py -------------------------------------------------------------------------------- /python_modules/signal_plot/plot_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/signal_plot/plot_mod.py -------------------------------------------------------------------------------- /python_modules/signal_plot/signal_plot.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/signal_plot/signal_plot.pyx -------------------------------------------------------------------------------- /python_modules/signal_plot/sliderplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/signal_plot/sliderplot.py -------------------------------------------------------------------------------- /python_modules/signal_plot/test_signal_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/signal_plot/test_signal_plot.py -------------------------------------------------------------------------------- /python_modules/spwdouble/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/spwdouble/setup.py -------------------------------------------------------------------------------- /python_modules/spwdouble/spwdouble.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/spwdouble/spwdouble.pyx -------------------------------------------------------------------------------- /python_modules/spwfinder/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/spwfinder/setup.py -------------------------------------------------------------------------------- /python_modules/spwfinder/spwfinder.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/spwfinder/spwfinder.pyx -------------------------------------------------------------------------------- /python_modules/spwrandom/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/spwrandom/setup.py -------------------------------------------------------------------------------- /python_modules/spwrandom/spwrandom.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/spwrandom/spwrandom.pyx -------------------------------------------------------------------------------- /python_modules/template/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/template/setup.py -------------------------------------------------------------------------------- /python_modules/template/template.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/template/template.pyx -------------------------------------------------------------------------------- /python_modules/test/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/test/setup.py -------------------------------------------------------------------------------- /python_modules/test/test.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/test/test.pyx -------------------------------------------------------------------------------- /python_modules/test2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/test2/setup.py -------------------------------------------------------------------------------- /python_modules/test2/test2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/test2/test2.pyx -------------------------------------------------------------------------------- /python_modules/testML/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/testML/setup.py -------------------------------------------------------------------------------- /python_modules/testML/subClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroNetMem/PythonPlugin/HEAD/python_modules/testML/subClient.py --------------------------------------------------------------------------------