Does anyone have any experience with generating a .qsf file (or otherwise automatically creating questions for a project) from csv data?
I have a project which requires a survey with questions of the same exact template, differing only in one word. Any time I upload a .qsf file generated with custom python code I reliably get a data validation error, having made sure there are no special characters and that the code is valid JSON.
Of course the problem lies in the custom code generation (as importing, say, a .qsf file I just exported from the online tool works). My question is, how do folks normally go about generating monotonous questions from data?
For extra information, the nature of the project is collecting data on human ratings of gender association for a set of words (in the csv). There are a couple of hundred, so I plan on creating subsets, and then generating a survey from those subsets.
I am not married to a custom solution at all; an API call solution would be great too.
Thanks!