SurveyEngine是一个可自定义的Survey Web用户界面。

surveyengine的Python项目详细描述


可自定义的调查Web用户界面。

您可以通过

pip install --user surveyengine

并通过以下方式运行:

python -m surveyengine spec.json output/

其中,output是结果的输出文件夹,spec.json是 测量规范:

{"title":"Survey Title Here",// the survey title
"pages":[// a sequence of pages
{"lines":["first line",// plain text that will be displayed
"second line {foo}"// displays: second line bar
],"vars":{// defines local variables
"foo":"bar"},"pid":"start"// the id for the page (used as prefix in the result file)
"continue":"next",// creates a single button at the bottom -- default ("next") can be omitted
"type":"plain"// the type of page -- default ("plain") can be omitted
},{"type":"each",// repeats a sequence of pages
"name":"ix",// the iteration variable name -- it can be used via {ix} in fields
"name_next":"ix_next",// "name_next" and "name_prev" are optional variables containing the next / previous iteration
"vars":{// defines local variables
"img_len":25// we define the range as variable so we can use it in the text
},"to":"{img_len}",// iterate until this number
"pages":[// ... pages to repeat ...
{"lines":["image {ix_next} / {img_len}",// displays: image 1 / 25
["img","path/to/image{ix}.png",""]// the image to display
],"pid":"question:{ix}"// the id for the page
"continue":"choice",// creates a collection of buttons at the bottom
"values":[// the values to choose from
"yes","no"]}]// this page type does not have a "continue" field
},{"lines":[// other special lines
// [ question_type, display_text, question_id ]
["text","just text",""],// simple text -- equivalent to "just text"
["likert","fun","fun"],// likert scale
["likert","confidence","conf"]],"pid":"specials"},{"lines":["Thanks! {_token}"// _token is a special variable containing the user id
],"continue":"end",// indicates the end of the survey -- this page must exist
"pid":"end"}]}

每个用户在输出文件夹中创建一个带有其唯一标记的结果文件。 结果文件是一个包含所有答案的JSON文件

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java的单元测试测试用例库。util。列出实现   java通过超类进行序列化/反序列化   java Android获取设备语言ISO字符串   java如何打开广告的行动。移动   Eclipse IDE for(嵌入式C/C++)开发者202012:经典的深色主题深黑色背景和菜单中的文本   java使用不同的内容动态创建TableView(JavaFX)   java JAXB将多个同名节点解组   java ClassDefNotFoundException,即使类由类加载器加载(服务器上安装了多个应用程序)   java有没有办法关闭在后端生成的MqttClient线程?   html如何在网站上的java小程序中包含图像?   java无法访问已分配给超类引用的子类实例变量   java在TableViewer中双击打开对话框   列出如何创建ListNode。JAVA   java如何从文本中输出的数组中放入随机图像