added scholarly to libraries in about page

This commit is contained in:
cbartondock 2021-03-31 22:43:23 -04:00
parent 26cc64bdd6
commit d5e453edd3
2 changed files with 8 additions and 1 deletions

View File

@ -54,6 +54,12 @@ try:
except ImportError:
greenlet_Version = None
try:
from scholarly import scholarly
scholarly_version = _(u'installed')
except ImportError:
scholarly_version = _(u'not installed')
from . import services
about = flask.Blueprint('about', __name__)
@ -79,6 +85,7 @@ _VERSIONS = OrderedDict(
iso639=isoLanguages.__version__,
pytz=pytz.__version__,
Unidecode = unidecode_version,
Scholarly = scholarly_version,
Flask_SimpleLDAP = u'installed' if bool(services.ldap) else None,
python_LDAP = services.ldapVersion if bool(services.ldapVersion) else None,
Goodreads = u'installed' if bool(services.goodreads_support) else None,

View File

@ -1021,7 +1021,7 @@ def scholar_search(query):
break
return Response(json.dumps(result),mimetype='application/json')
else:
return 'Scholarly not installed'
return []