当前位置:   article > 正文

python报错系列(12)--TypeError: search() got an unexpected keyword argument ‘tld‘_similarity_search_with_score_by_vector() got an un

similarity_search_with_score_by_vector() got an unexpected keyword argument

系列文章目录


前言

一、TypeError: search() got an unexpected keyword argument ‘tld

#import library 
from googlesearch import search
#write your query
query = "best course for python"
# displaying 10 results from the search
for i in search(query, tld="co.in", num=10, stop=10, pause=2):
    print(i)
#you will notice the 10 search results(website links) in the output.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

报错如下:
在这里插入图片描述

二、原因分析

这是由于elasticsearch版本更新导致的,elasticsearch更新到7之后,就没有了doc_type这个参数只需要在原来elasticsearch6代码的基础上删除doc_type这个即可。


总结

分享:
许多年轻人开始做事时都非常狂热,但随着新鲜感的消失就把它们丢到了一边。他们没有稳定的兴趣,他们的工作也只是表面的现象。他们常常有很大潜能,但缺乏敬业精神和持之以恒习惯的培养。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/286511
推荐阅读
相关标签
  

闽ICP备14008679号