psychopy-neuroplaypro-neurolab 0.0.2__py3-none-any.whl → 0.0.4__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.
- psychopy_neuroplaypro/__init__.py +1 -2
- psychopy_neuroplaypro/plugin.py +1 -1
- psychopy_neuroplaypro_neurolab-0.0.4.dist-info/METADATA +9 -0
- psychopy_neuroplaypro_neurolab-0.0.4.dist-info/RECORD +8 -0
- psychopy_neuroplaypro/component.py +0 -14
- psychopy_neuroplaypro_neurolab-0.0.2.dist-info/METADATA +0 -21
- psychopy_neuroplaypro_neurolab-0.0.2.dist-info/RECORD +0 -9
- {psychopy_neuroplaypro_neurolab-0.0.2.dist-info → psychopy_neuroplaypro_neurolab-0.0.4.dist-info}/WHEEL +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.2.dist-info → psychopy_neuroplaypro_neurolab-0.0.4.dist-info}/entry_points.txt +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.2.dist-info → psychopy_neuroplaypro_neurolab-0.0.4.dist-info}/licenses/LICENSE +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.2.dist-info → psychopy_neuroplaypro_neurolab-0.0.4.dist-info}/top_level.txt +0 -0
@@ -1,2 +1 @@
|
|
1
|
-
#
|
2
|
-
from .component import NeuroPlayComponent
|
1
|
+
# Инициализация пакета — можно оставить пустым
|
psychopy_neuroplaypro/plugin.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
from psychopy.plugins import Plugin
|
2
2
|
from psychopy.experiment.components import registerComponent
|
3
|
-
from
|
3
|
+
from psychopy_neuroplaypro.components.neuroplay import NeuroPlayComponent
|
4
4
|
|
5
5
|
class NeuroPlayPlugin(Plugin):
|
6
6
|
def onLoad(self):
|
@@ -0,0 +1,9 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: psychopy-neuroplaypro-neurolab
|
3
|
+
Version: 0.0.4
|
4
|
+
Summary: NeuroPlay EEG recording plugin for PsychoPy Builder
|
5
|
+
Author-email: Enicast <enicaster@gmail.com>
|
6
|
+
Requires-Python: >=3.8
|
7
|
+
License-File: LICENSE
|
8
|
+
Requires-Dist: psychopy
|
9
|
+
Dynamic: license-file
|
@@ -0,0 +1,8 @@
|
|
1
|
+
psychopy_neuroplaypro/__init__.py,sha256=fd3Mi-jIseuqbdbmJqsB86t7nxhkg2fq0l3P4OiboA0,87
|
2
|
+
psychopy_neuroplaypro/plugin.py,sha256=GbEzT6NQSMDeKQkNGmi8oIhpISiiXDF-o0B0Pnc-wnk,329
|
3
|
+
psychopy_neuroplaypro_neurolab-0.0.4.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
psychopy_neuroplaypro_neurolab-0.0.4.dist-info/METADATA,sha256=1Maon8Vb7JSTGHCdTueB-cu-O1a7sDM4CkM1Mj7Q-6w,270
|
5
|
+
psychopy_neuroplaypro_neurolab-0.0.4.dist-info/WHEEL,sha256=ooBFpIzZCPdw3uqIQsOo4qqbA4ZRPxHnOH7peeONza0,91
|
6
|
+
psychopy_neuroplaypro_neurolab-0.0.4.dist-info/entry_points.txt,sha256=wN4RTZ4kOCrKFoQrhq-pqtiMgYNrM4RtuWoYQX0i8S0,76
|
7
|
+
psychopy_neuroplaypro_neurolab-0.0.4.dist-info/top_level.txt,sha256=yFmWoUXUcLuorBVd9lVUWwjDmk9sIHoKXW8QhBO5NLI,22
|
8
|
+
psychopy_neuroplaypro_neurolab-0.0.4.dist-info/RECORD,,
|
@@ -1,14 +0,0 @@
|
|
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")
|
@@ -1,21 +0,0 @@
|
|
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
|
@@ -1,9 +0,0 @@
|
|
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,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|