This is my shopping list of things to investigate. It's a notes page of where I am at the moment in the process of connecting Python and Prolog. I hope it might help someone who is trying to do the same thing, or perhaps thinking about trying to do the same thing. If you have any ideas then it would be great to hear from you. At the moment I am thinking that programming in C++ and using SWI-Prolog's C++ interface might be the answer.
I've been looking into this lately and have collected these things to look at.
I can program in Prolog and like it. I'm not great at it but I love the way of thinking. I have been using Python also, not that I particularly like Python, but it's so useful and appears in so many places. (yes I've been plating with the Raspberry Pi). So, can I get the Pi to use prolog as it's decision making engine?
pyswip
https://code.google.com/p/pyswip/
This is a bridge between SWI-Prolog and Python and it seems to be the first place to visit. It works on Linux and Win32 but not sure about OSX
I looked at this first and thought that it had stopped being developed. I'm not sure. I think there was an update in December 2012.
There seems to be a nice post on someone's expereince from 2011 here:
http://ryepdx.com/2011/09/prolog-in-python-pt-1/
Picstus
This is an interface between Sicstus Prolog and Python. I probably wont look at this as I am using SWI-Prolog for the time being. Sicstus costs about 165 Euros and I'm not that professional.
http://www.biolab.si/picstus/picstus.html
A Prolog Interpreter in Python
This is very interesting stuff. Excelent stuff.
http://wwwold.stups.uni-duesseldorf.de/thesis/Bolz2007-Bachelorarbeit.pdf but probably it's not going to help me.
[UPDATE 2016] The above link no longer works. Try this
http://stups.hhu.de/w/A_Prolog_Interpreter_in_Python
There is also some work by Chris Meyers
http://www.openbookproject.net/py4fun/ a few links in this page. In summary though it's too slow for a real world solution.
SWIG
"SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages." So We could wrap Prolog with Swig.
Probably not what I want to do as a bit complex.
Pwig
This is a swig extension for Python.
PyKE
It has an inference engine but the syntax is new. I suppose it would do but it's a shame not to improve my skills in Prolog. That said though, the skill in prolog is the thinking not the syntax.
PyProlog
A Python extension embedding SWI-Prolog. This was last updated in 2001 so is a tad out of date with very little or no information.
Pyrolog
I'm not sure about this one. A prolog interpreter written in RPython.
https://bitbucket.org/cfbolz/pyrolog
PyLog
http://wiki.python.org/moin/PyLog
Well I'm not sure about this. It's a first order logic library. It also
Knowrob
KnowRob is a knowledge processing system that combines knowledge representation and reasoning methods with techniques for acquiring knowledge and for grounding the knowledge in a physical system and can serve as a common semantic framework for integrating information from different sources.
Too big for my needs here but really cool.
So now what do I think?
Well I'm beginning to think I should look at coding in C or C++.
My task is for the Raspberry Pi and it's a shame to slow it up by getting into C again after so many years. Python wold be such a fast and rapid development. Maybe I create a C interface to my Prolog. Then use Python for all other motor controlling, sensor controlling. Then, when it's a success and become a millionaire, I can refactor all the code from Python to C for the fun of it.
This is a disappointment. I'll do some more digging and write my thoughts here.