Re: [pylons-discuss] Hypatia alternative?

2022-04-23 Thread Chris McDonough
hypatia 0.4 should now be on PyPI. Thanks! --- Original Message --- On Tuesday, April 19th, 2022 at 10:53 AM, Thierry Florac wrote: > Done! > > Best regards, > Thierry > -- > https://www.ulthar.net -- http://pyams.readthedocs.io > > Le lun. 18 avr. 2022 à 19:15, Chris McDonough a

Re: [pylons-discuss] Hypatia alternative?

2022-04-19 Thread Peter Wilkinson
Hi Thierry, Chris. I’ve been working with a fork of Hypatia for a while, for our use case it is excellent - I’ve not felt comfortable pushing to ’take over’ in any way as my time to work on it comes and goes. I’ve updated for more recent python versions and also added a spatial index type.

Re: [pylons-discuss] Hypatia alternative?

2022-04-19 Thread Thierry Florac
Done! Best regards, Thierry -- https://www.ulthar.net -- http://pyams.readthedocs.io Le lun. 18 avr. 2022 à 19:15, Chris McDonough a écrit : > > All green now on hypatia master (delta travis, which I forget how to > use, but it doesn't matter, local tests and coverage pass), thanks for the

Re: [pylons-discuss] Hypatia alternative?

2022-04-18 Thread Chris McDonough
> All green now on hypatia master (delta travis, which I forget how to use, but > it doesn't matter, local tests and coverage pass), thanks for the patch! I'll > try to remember how to make a release tonight. :) Ah, sorry, one other thing, could you make a PR adding your name to

Re: [pylons-discuss] Hypatia alternative?

2022-04-18 Thread Chris McDonough
> Gonna be a little while, the bitrot is pretty severe. :) But should be no (or > only minor) issue with the code itself. > > py27: commands succeeded > ERROR: py34: InvocationError for command > /home/chrism/projects/hypatia/.tox/py34/bin/python -m pip install --no-deps > -U

Re: [pylons-discuss] Hypatia alternative?

2022-04-18 Thread Chris McDonough
> > > > > > --- Original Message --- > On Monday, April 18th, 2022 at 7:48 AM, Thierry Florac tflo...@gmail.com > wrote: > > > > > I have created a patch and a pull request...If it's OK and if you could > > create a new release that would be very nice !! :) > > Best regards,Thierry > >

Re: [pylons-discuss] Hypatia alternative?

2022-04-18 Thread Chris McDonough
--- Original Message --- On Monday, April 18th, 2022 at 7:48 AM, Thierry Florac wrote: > I have created a patch and a pull request...If it's OK and if you could > create a new release that would be very nice !! :) > Best regards,Thierry > --https://www.ulthar.net --

Re: [pylons-discuss] Hypatia alternative?

2022-04-18 Thread Thierry Florac
I have created a patch and a pull request... If it's OK and if you could create a new release that would be very nice !! :) Best regards, Thierry -- https://www.ulthar.net -- http://pyams.readthedocs.io Le lun. 18 avr. 2022 à 10:40, Chris McDonough a écrit : > Fwiw that extension was

Re: [pylons-discuss] Hypatia alternative?

2022-04-18 Thread Chris McDonough
Fwiw that extension was stolen from zope.catalog, it's probably fixed there. Original Message On Apr 18, 2022, 3:56 AM, Thierry Florac wrote: > Hi Chris, > That would be very nice! :) > Actually, my own CI tests are passing on Python 3.10 when using PURE_PYTHON > environment

Re: [pylons-discuss] Hypatia alternative?

2022-04-18 Thread Thierry Florac
Hi Chris, That would be very nice! :) Actually, my own CI tests are passing on Python 3.10 when using PURE_PYTHON environment variable; the problem seems to be in the Okapi scoring extension. I'll try to have a look at this but I'm not used to working on Python C extension... Best regards,

Re: [pylons-discuss] Hypatia alternative?

2022-04-17 Thread Chris McDonough
I would likely be able to review any patches made to Hypatia --- Original Message --- On Sunday, April 17th, 2022 at 11:11 AM, Thierry Florac wrote: > Hi Laurent, > > I'm actually using Elasticsearch, with a custom integration package to > include it in my framework! > It works very

Re: [pylons-discuss] Hypatia alternative?

2022-04-17 Thread Laurent Daverio
Ah yes, that was my rationale for looking at Whoosh. I figured it would be nice to have a self-contained solution which could run e.g. on a Raspberry Pi, with SQLite instead of PostgreSQL, and Whoosh instead of Solr. But I remember running into some interfacing problems (Whoosh and Solr don't look

Re: [pylons-discuss] Hypatia alternative?

2022-04-17 Thread Thierry Florac
Hi Laurent, I'm actually using Elasticsearch, with a custom integration package to include it in my framework! It works very well, but I'm also looking for a default alternative, "internal" and lighter, as Hypatia does, which doesn't rely on an external service to handle objects cataloging, and

Re: [pylons-discuss] Hypatia alternative?

2022-04-17 Thread Steve Piercy
I have no idea who uses Hypatia. I suppose you could use Google's Big Query to see how many PyPI downloads were made. You could fork it, update it for Python 3.10 for your personal use, and submit pull requests back to it. I don't know if the maintainers are active. --steve On 4/17/22 5:35

Re: [pylons-discuss] Hypatia alternative?

2022-04-17 Thread Laurent Daverio
Hi Thierry, when I started using Pyramid (Pylons, actually), my first idea was to integrate the Xapian library, written in C++. Coming from the Zope world, I tried to adopt some ideas from the ZCatalog. Xapian worked great, except for one problem: it's a library, not a server, thus it doesn't

Re: [pylons-discuss] Hypatia alternative?

2022-04-17 Thread Thierry Florac
Hi Steve, I'm aware of these packages, for using Zope for many years! But Hypatia was providing some improvements (as far as I can estimate) over these packages, and was perfectly accorded to my own needs... Am I the only one using this package? Could it be possible to maintain this package and

Re: [pylons-discuss] Hypatia alternative?

2022-04-17 Thread Steve Piercy
Reading: https://hypatia.readthedocs.io/en/latest/genealogy.html Unfortunately, this ex-package appears to be pushing up the daisies, if it wasn't nailed to the perch. You could also check out these two packages, which appear to be actively developed:

Re: [pylons-discuss] Hypatia alternative?

2022-04-17 Thread Steve Piercy
On 4/17/22 4:14 AM, Thierry Florac wrote: Hi, I'm actually using the Hypatia package for content indexing and I'm very happy with it, but this package doesn't seem to be updated for a very long time (2 years since last commit). Actually, my own packages unit tests are failing when using

[pylons-discuss] Hypatia alternative?

2022-04-17 Thread Thierry Florac
Hi, I'm actually using the Hypatia package for content indexing and I'm very happy with it, but this package doesn't seem to be updated for a very long time (2 years since last commit). Actually, my own packages unit tests are failing when using Python 3.10 with Hypatia, so I was wondering if it