A Django-based host for the decide operant control system
Project description
django-decide-host
Decide is an event-driven state-machine framework for running behavioral experiments with embeddable computers like the Beaglebone Black. This repository is a Django app that collates event and trial data from multiple devices running decide
version 3.0 or later. It replaces decide-host, which was a bit snazzier but becoming very difficult to maintain.
This should more or less be working but should be considered beta. You should continue to save trial information locally.
This software is licensed for you to use under the Gnu Public License, version 3. See COPYING for details
Quick start
-
Install the package from source:
python setup.py install
. Worth putting in a virtualenv. -
Add
decide_host
to your INSTALLED_APPS setting like this:
INSTALLED_APPS = (
...
'decide_host.apps.DecideHostConfig',
)
You'll also need to add rest_framework
and django_filters
.
- Include the decide_host URLconf in your project urls.py like this::
url(r'^decide_host/', include(decide_host.urls')),
-
Run
python manage.py migrate
to create the database tables. -
Start the development server and point your browser to http://127.0.0.1:8000/decide-host/api/ to view records and inspect the API.
Importing trial data
If you have trial data in jsonl files that you'd like you import into the database, you can do this very easily. From your project site, run manage.py import_trials -n <name> -a <addr> trials.json
. You need to supply the name of the controller (addr) and the procedure (name). The import will not happen if there's a duplicate in the database, so no need to worry about this.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for django_decide_host-0.3.6-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ecbc20f1347cc0be57cf8db2d9b696db6dbc9089e1246a003aba9aca6e8d405 |
|
MD5 | 7c38a8151db864d01a301f561df76f94 |
|
BLAKE2b-256 | 185dcf4dddce44506035f5674a41d96a4e57d4f850ecbf53a179851c5592f05d |