psychopy-neuroplaypro-neurolab 0.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ # пустой или просто:
2
+ from .component import NeuroPlayComponent
@@ -0,0 +1,14 @@
1
+ from psychopy.experiment.components.base import BaseComponent
2
+
3
+ class NeuroPlayComponent(BaseComponent):
4
+ def __init__(self, exp, parentName, name='NeuroPlay'):
5
+ super().__init__(exp, parentName, name)
6
+ self.type = 'NeuroPlay'
7
+ self.url = 'http://localhost:2336'
8
+ self.params = {}
9
+
10
+ def writeRoutineStartCode(self, buff):
11
+ buff.writeIndented("# Start NeuroPlay\n")
12
+
13
+ def writeRoutineEndCode(self, buff):
14
+ buff.writeIndented("# Stop NeuroPlay\n")
@@ -0,0 +1,8 @@
1
+ from psychopy.plugins import Plugin
2
+ from psychopy.experiment.components import registerComponent
3
+ from psychopy_neuroplay.component import NeuroPlayComponent
4
+
5
+ class NeuroPlayPlugin(Plugin):
6
+ def onLoad(self):
7
+ registerComponent("NeuroPlay", NeuroPlayComponent)
8
+ print("✅ NeuroPlay plugin loaded")
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: psychopy-neuroplaypro-neurolab
3
+ Version: 0.0.2
4
+ Summary: NeuroPlay EEG recording plugin for PsychoPy Builder
5
+ Author-email: Enicast <enicaster@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/Enicast/psychopy-neuroplaypro-neurolab
8
+ Project-URL: Repository, https://github.com/Enicast/psychopy-neuroplaypro-neurolab
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: psychopy>=2024.2.0
13
+ Dynamic: license-file
14
+
15
+ # PsychoPy NeuroPlay Plugin
16
+
17
+ Component for controlling NeuroPlayPro EEG recording from PsychoPy Builder experiments.
18
+ - Start recording when the component starts
19
+ - Stop recording when the component ends
20
+ - Choose folder and filename prefix
21
+ - Auto-add timestamp if needed
@@ -0,0 +1,9 @@
1
+ psychopy_neuroplaypro/__init__.py,sha256=eJWHh_15cClNjbu93KJ8u8A18NjMvFKhB7Fjp5iRERo,78
2
+ psychopy_neuroplaypro/component.py,sha256=DizONOAXDofOhhsK0yLAHcDYfqggYOD8jbyp7MiwAUE,496
3
+ psychopy_neuroplaypro/plugin.py,sha256=qvR5amb3J7notQfLyfEtss12LxDhwKYYlLRuHUetAh4,315
4
+ psychopy_neuroplaypro_neurolab-0.0.2.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ psychopy_neuroplaypro_neurolab-0.0.2.dist-info/METADATA,sha256=-o77rLzVrE72JnV_ibwbIWjYtQEdEI3HAX0ejuIJkXA,767
6
+ psychopy_neuroplaypro_neurolab-0.0.2.dist-info/WHEEL,sha256=ooBFpIzZCPdw3uqIQsOo4qqbA4ZRPxHnOH7peeONza0,91
7
+ psychopy_neuroplaypro_neurolab-0.0.2.dist-info/entry_points.txt,sha256=wN4RTZ4kOCrKFoQrhq-pqtiMgYNrM4RtuWoYQX0i8S0,76
8
+ psychopy_neuroplaypro_neurolab-0.0.2.dist-info/top_level.txt,sha256=yFmWoUXUcLuorBVd9lVUWwjDmk9sIHoKXW8QhBO5NLI,22
9
+ psychopy_neuroplaypro_neurolab-0.0.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [psychopy.plugins]
2
+ neuroplay = psychopy_neuroplaypro.plugin:NeuroPlayPlugin
@@ -0,0 +1 @@
1
+ psychopy_neuroplaypro