Python utilities for solr?

2007-04-15 Thread Jack L
Doing queries is so easy with Python, thanks to solr's Python format support. Is there any Python utility classes for posting documents? Which I think, is essentially a Python class to generate XML documents (before JSON support is available) from Python objects. Then again, JSON for posting would

Re: Python utilities for solr?

2007-04-15 Thread Erik Hatcher
There is a solr.py in the Solr clients directory: http://svn.apache.org/repos/asf/lucene/solr/trunk/client/python/solr.py It's got some utility methods for generating field's. Erik On Apr 15, 2007, at 6:47 PM, Jack L wrote: Doing queries is so easy with Python, thanks to

Re: Python utilities for solr?

2007-04-15 Thread Mike Klaas
On 4/15/07, Jack L [EMAIL PROTECTED] wrote: Doing queries is so easy with Python, thanks to solr's Python format support. Is there any Python utility classes for posting documents? Which I think, is essentially a Python class to generate XML documents (before JSON support is available) from

Re: Python utilities for solr?

2007-04-15 Thread rubdabadub
There is also this .. I discovered it when i was trying to find some djngo - solr working example.. http://code.google.com/p/fac-back-opac/ Cheers On 4/16/07, Mike Klaas [EMAIL PROTECTED] wrote: On 4/15/07, Jack L [EMAIL PROTECTED] wrote: Doing queries is so easy with Python, thanks to

Re[2]: Python utilities for solr?

2007-04-15 Thread Jack L
Mike and Erik, thanks for the reply. Excellent. I'll try it out. On 4/15/07, Jack L [EMAIL PROTECTED] wrote: Doing queries is so easy with Python, thanks to solr's Python format support. Is there any Python utility classes for posting documents? Which I think, is essentially a Python class