gpt4 book ai didi

python - 如何在 Whoosh 上突出显示搜索

转载 作者:太空宇宙 更新时间:2023-11-03 17:11:13 27 4
gpt4 key购买 nike

我使用了来自 pythonhosted.org 的示例代码,但似乎没有发生任何事情。这是我使用的代码:

results = mysearcher.search(myquery)
for hit in results:
print(hit["title"])

我将此代码输入到 python 中,但出现错误,提示 mysearcher is not Defined。所以我真的不确定我是否遗漏了一些东西,因为我只是想了解基础知识来让我启动和运行。

最佳答案

您缺少定义搜索器mysearcher,请复制整个代码。这是一个完整的示例:

>>> import whoosh
>>> from whoosh.index import create_in
>>> from whoosh.fields import *
>>> schema = Schema(title=TEXT(stored=True), path=ID(stored=True), content=TEXT)
>>> ix = create_in("indexdir", schema)
>>> writer = ix.writer()
>>> writer.add_document(title=u"First document", path=u"/a",
... content=u"This is the first document we've added!")
>>> writer.add_document(title=u"Second document", path=u"/b",
... content=u"The second one is even more interesting!")
>>> writer.commit()
>>> from whoosh.qparser import QueryParser
>>> with ix.searcher() as searcher:
... query = QueryParser("content", ix.schema).parse("first")
... results = searcher.search(query)
... results[0]
...
{"title": u"First document", "path": u"/a"}

你可以像这样突出显示:

for hit in results:
print(hit["title"])
# Assume "content" field is stored
print(hit.highlights("content"))

关于python - 如何在 Whoosh 上突出显示搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34068054/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com