views:

170

answers:

2

Hi all,

I'm a longtime python developer and recently have been introduced to Prolog. I love the concept of using relations for certain kinds of tasks, and would like to add this to my repertoire.

Are there any good libraries for relational programming in Python? I've done some searching on Google but only found the following:

http://jtauber.com/blog/2005/11/10/relational%5Fpython%3A%5Fbasic%5Fclass%5Ffor%5Frelations/

Would love to compare to some others...thanks!

-aj

+2  A: 

Perhaps you should google "Logic Programming in Python". The following looks promising: http://pyke.sourceforge.net/

HIH

...richie

Richie
@Richie, looks like a useful package. Thanks for the pointer!
AJ
A: 

You could also look at Dee, which adds relations to Python: http://www.quicksort.co.uk

Greg Gaughan