我想将 algolia python lib 导入我的 python 3 应用程序引擎项目。
所以我做了
pip install algoliasearch -t lib
在我创建的 lib 文件夹中__init__.py
然后在我的项目中我使用导入
from lib.algoliasearch.search_client import SearchClient
到目前为止,一切都很好。但是在 algolia 图书馆中,例如
lib\algoliasearch\search_client.py
还有如下导入语句:
from algoliasearch.helpers import endpoint, is_async_available
这在我全局安装时有效,否则安装在 lib 文件夹中,当我部署应用程序引擎时它不起作用。
作为解决方案,我可以更新这些文件
from lib.algoliasearch.helpers import endpoint, is_async_available
这是一个糟糕的解决方案。
另一方面,如果我申请:
import sys
sys.path.insert(0, './lib')
这一次,它在几个部分被打破,即
libcrypto_path = find_library(b'crypto' if sys.version_info < (3,) else 'crypto')
if not libcrypto_path:
raise LibraryNotFoundError('The library libcrypto could not be found')
在
lib\asn1crypto\_perf\_big_num_ctypes.py
如何正确导入此 algoliasearch 库?
注意:我可以猜到,Algolia 团队应该通过提供相关路径来更新他们的包,例如:
代替
from algoliasearch.helpers import endpoint, is_async_available
这个:
from helpers import endpoint, is_async_available