psychopy-neuroplaypro-neurolab 0.0.2__tar.gz
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_neurolab-0.0.2/LICENSE +0 -0
- psychopy_neuroplaypro_neurolab-0.0.2/PKG-INFO +21 -0
- psychopy_neuroplaypro_neurolab-0.0.2/README.md +7 -0
- psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro/__init__.py +2 -0
- psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro/component.py +14 -0
- psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro/plugin.py +8 -0
- psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro_neurolab.egg-info/PKG-INFO +21 -0
- psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro_neurolab.egg-info/SOURCES.txt +12 -0
- psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro_neurolab.egg-info/dependency_links.txt +1 -0
- psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro_neurolab.egg-info/entry_points.txt +2 -0
- psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro_neurolab.egg-info/requires.txt +1 -0
- psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro_neurolab.egg-info/top_level.txt +1 -0
- psychopy_neuroplaypro_neurolab-0.0.2/pyproject.toml +26 -0
- psychopy_neuroplaypro_neurolab-0.0.2/setup.cfg +4 -0
File without changes
|
@@ -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,7 @@
|
|
1
|
+
# PsychoPy NeuroPlay Plugin
|
2
|
+
|
3
|
+
Component for controlling NeuroPlayPro EEG recording from PsychoPy Builder experiments.
|
4
|
+
- Start recording when the component starts
|
5
|
+
- Stop recording when the component ends
|
6
|
+
- Choose folder and filename prefix
|
7
|
+
- Auto-add timestamp if needed
|
@@ -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,12 @@
|
|
1
|
+
LICENSE
|
2
|
+
README.md
|
3
|
+
pyproject.toml
|
4
|
+
psychopy_neuroplaypro/__init__.py
|
5
|
+
psychopy_neuroplaypro/component.py
|
6
|
+
psychopy_neuroplaypro/plugin.py
|
7
|
+
psychopy_neuroplaypro_neurolab.egg-info/PKG-INFO
|
8
|
+
psychopy_neuroplaypro_neurolab.egg-info/SOURCES.txt
|
9
|
+
psychopy_neuroplaypro_neurolab.egg-info/dependency_links.txt
|
10
|
+
psychopy_neuroplaypro_neurolab.egg-info/entry_points.txt
|
11
|
+
psychopy_neuroplaypro_neurolab.egg-info/requires.txt
|
12
|
+
psychopy_neuroplaypro_neurolab.egg-info/top_level.txt
|
psychopy_neuroplaypro_neurolab-0.0.2/psychopy_neuroplaypro_neurolab.egg-info/dependency_links.txt
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
psychopy>=2024.2.0
|
@@ -0,0 +1 @@
|
|
1
|
+
psychopy_neuroplaypro
|
@@ -0,0 +1,26 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools", "wheel"]
|
3
|
+
build-backend = "setuptools.build_meta"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "psychopy-neuroplaypro-neurolab"
|
7
|
+
version = "0.0.2"
|
8
|
+
description = "NeuroPlay EEG recording plugin for PsychoPy Builder"
|
9
|
+
authors = [
|
10
|
+
{ name = "Enicast", email = "enicaster@gmail.com" }
|
11
|
+
]
|
12
|
+
readme = "README.md"
|
13
|
+
license = { text = "MIT" }
|
14
|
+
dependencies = ["psychopy>=2024.2.0"]
|
15
|
+
requires-python = ">=3.8"
|
16
|
+
|
17
|
+
[project.urls]
|
18
|
+
Homepage = "https://github.com/Enicast/psychopy-neuroplaypro-neurolab"
|
19
|
+
Repository = "https://github.com/Enicast/psychopy-neuroplaypro-neurolab"
|
20
|
+
|
21
|
+
[project.entry-points."psychopy.plugins"]
|
22
|
+
neuroplay = "psychopy_neuroplaypro.plugin:NeuroPlayPlugin"
|
23
|
+
|
24
|
+
[tool.setuptools]
|
25
|
+
packages = ["psychopy_neuroplaypro"]
|
26
|
+
include-package-data = true
|