tags:

views:

335

answers:

1

Django-survey or django-questionnaire is too admin-centric for me (beside tied to django). I want my user to create their own survey. Something like Google Form survey (view example), where form creation feels fluid and intuitive (because of js magic). I've googling around with no luck.

Is there any python-based survey app/library/package out there? I'm OK if i have to write my own model/python-wise but not so sure in designing the creation process (javascript). Do you have suggestion of what Javascript library may suit this?

Thanks.

+1  A: 

Have tried taking a look at google app engine? It really is not just a survey library, but much much more - and since it gives you Python APIs it probably is not too hard to create a web service that can be used by your users to create new surveys.

Here is the python documentation and here are the docs for form handling

Kimvais
Try creating survey form using Google Spreadsheet. You'll see what i mean ;)
apito