Open priest110 opened 2 years ago
Hi Rui, we were happily surprised to see you using our B2FIND extension :). We are currently in the process of refactoring this code for CKAN 2.9 (Python 3 compliant). The error you got is due to using Python 2 which does not support the f string notation (see https://realpython.com/python-f-strings/ ). The current master is a development version, please use tag 2.5.1. (https://github.com/EUDAT-B2FIND/ckanext-b2find/tree/v2.5.1 ). That is CKAN 2.8 with Python 2 and should work fine.
Ok, thank you! I will then change the version
It still doesn't work with that suggestion. I am using ckan 2.9 (installed with docker) with python 2.7, how can I use this extension? I'm trying to use the 2.5.1 tag but I'm getting an internal 500 error, like this on the home page:
Is there an example of a demo with this extension working? To understand how it is supposed to look.
Hi! I think the new release has a bug in blueprints.py:
url=f"{solr.url}/query"
shouldn't beurl="{solr.url}/query"
? With the first my system doesn't work, but without the "f" no problem