Python - complex questionaire with CLIPS

167 views Asked by At

I have a rather large questionaire on my page right now with around 50 questions whose purpose is to see if the user could be a relevant client of mine. I want to reduce it to 5 or max 10 questions by only asking relevant questions at each step and generating a new question based on what he replied in the previous questions (not only the last one). I have a graph of how I want the questions to be connected and I also have some pseudo code in CLIPS which basically does this really well. The problem is, that the only python package (PyCLIPS) which can load CLIPS I found is running only on Python 2.5 and hasn't been updated for few years, so CLIPS is not a very good option right now.

I have seen one other question here about similiar stuff ( What libraries for modeling complex questionaire in Python? ) but the answer there is to use automata which is not really good for me because I will have also numerical answers and logical combinations of other previous answers.

Is there some other package which does something similiar or some other way how to connect CLIPS (or other expert system) to python?

0

There are 0 answers