Re: Tripoli: a Python-based triplespace implementation

2005-05-02 Thread Dominic Fox
> Is there some interoperability requirement with non-Python apps? If not, > why not just use pickle or marshal? I would imagine that much of the existing, current and useful triple-based data out there is serialized (or serializable) in RDF/XML. I wouldn't choose it as a serialization format arb

Re: Tripoli: a Python-based triplespace implementation

2005-05-02 Thread Skip Montanaro
Dominic> Tripoli will eventually support RDF/XML as a format for Dominic> importing and exporting triples. Is there some interoperability requirement with non-Python apps? If not, why not just use pickle or marshal? Slo[ -- http://mail.python.org/mailman/listinfo/python-list

Re: Tripoli: a Python-based triplespace implementation

2005-05-02 Thread Dominic Fox
karouri wrote: > Interesting, but I wonder if you are aware of pylinda > (http://www-users.cs.york.ac.uk/~aw/pylinda/) and if so, what's the > difference? Tripoli trades off some of the generality of PyLinda in order to support some performance tweaks and some additional graph-related operations.

Re: Tripoli: a Python-based triplespace implementation

2005-05-01 Thread malkarouri
Dominic Fox wrote: > I have been working on a Python implementation of a modified Tuple > Space (cf Linda, JavaSpaces) that contains only 3-tuples (triples), > and that has operators for copying and moving graphs of triples as > well as sets matching a given pattern. It's called Tripoli, ... Inter