Difference between revisions of "Help:LimeSurvey/Demo Psychopy"

From TSG Doc
Jump to navigation Jump to search
Line 9: Line 9:
 
url = "https://survey.socsci.ru.nl/index.php/survey/index/sid/459278/newtest/Y/lang/en?token={:d}".format(participantID)
 
url = "https://survey.socsci.ru.nl/index.php/survey/index/sid/459278/newtest/Y/lang/en?token={:d}".format(participantID)
 
import os
 
import os
 +
 
if sys.platform == 'win32':
 
if sys.platform == 'win32':
     # windows has no command to start the default browser, hope this one exists
+
     # open url with default browser
     os.system("chrome.exe "+url)
+
     os.system("start "+url)
 
else:
 
else:
 
     # this selects the default browser in most Unices
 
     # this selects the default browser in most Unices

Revision as of 15:26, 1 February 2015

Demo entering a survey after a Psychopy experiment

Make sure your survey has a token table which contains the participant ID's:

Token.png

Then, after your experiment has finished, start a web browser showing the survey.

participantID = 2
url = "https://survey.socsci.ru.nl/index.php/survey/index/sid/459278/newtest/Y/lang/en?token={:d}".format(participantID)
import os

if sys.platform == 'win32':
    # open url with default browser
    os.system("start "+url)
else:
    # this selects the default browser in most Unices
    os.system("xdg-open "+url)

will start a browser with the following survey:

Token2.png