全文搜索
标题搜索
全部时间
1小时内
1天内
1周内
1个月内
默认排序
按时间排序
为您找到相关结果470,211个

Python使用Selenium自动进行百度搜索的实现_python_脚本之家

search_input.send_keys(keyword) # 回车 search_input.send_keys(Keys.ENTER) # 等待10秒钟 self.browser.implicitly_wait(10) # 找到所有的搜索结果 results = self.browser.find_elements_by_css_selector(".t a , em , .c-title-text") # 遍历所有的搜索结果 with open("search_result.txt","w"...
www.jb51.net/article/2171...htm 2024-10-9

ThinkPHP2.0读取MSSQL提示Incorrect syntax near the keyword 'AS...

出现的情况是使用 query 可以正确读取到数据,而使用M方法,则无法读取,会报出 Incorrect syntax near the keyword 'AS'. 错误 原因是DbMssql.class.php驱动的查询语句有问题。由于TP2.0 的 MSSQL 驱动是对SQL 2005有效,但对2000版本则无效,原因是2000版本里没有 ROW_NUMBER 功能,2005才有这个功能作用好像是对数...
www.jb51.net/article/515...htm 2024-10-1

Python通过tkinter实现百度搜索的示例代码_python_脚本之家

"http://www.baidu.com.cn/s?wd=" + urllib.parse.quote(keyword + str(genera)) + "&pn=" + str(page * 10)) return links def get_page(url): headers = {"user-agent": UserAgent().chrome} req = requests.get(url, headers=headers) req.encoding = "utf-8" soup = BeautifulSoup(req....
www.jb51.net/article/2092...htm 2024-10-5

Python利用FlashText算法实现替换字符串_python_脚本之家

from flashtext import KeywordProcessor # 1. 初始化关键字处理器 keyword_processor = KeywordProcessor() # 2. 添加关键词 keyword_processor.add_keyword('Big Apple', 'New York') keyword_processor.add_keyword('Bay Area') # 3. 处理目标句子并提取相应关键词, 并标记关键词的起始、终止位置 keywords_fo...
www.jb51.net/article/2429...htm 2024-10-10

Python利用Beautiful Soup模块搜索内容详解_python_脚本之家

customsoup = BeautifulSoup(customattr,'lxml') customsoup.find(data-custom="custom") # SyntaxError: keyword can't be an expression这个时候使用 attrs 属性值来传递一个字典类型作为参数进行搜索:1 2 using_attrs = customsoup.find(attrs={'data-custom':'custom'}) print using_attrs基于...
www.jb51.net/article/1097...htm 2024-10-9

Python使用TextRank算法提取关键词_python_脚本之家

这个TextRank4Keyword 实现了前文描述的相关功能。我们可以看到一段的输出。 1 2 3 4 5 6 text = ''' The Wandering Earth, described as China's first big-budget science fiction thriller, quietly made it onto screens at AMC theaters in North America this weekend, and it shows a new side of...
www.jb51.net/article/2695...htm 2024-10-11

Python 敏感词过滤的实现示例_python_脚本之家

for keyword in open(path): self.keywords.add(keyword.strip().decode('utf-8').lower()) def filter(self, message, repl="*"): message = str(message).lower() for kw in self.keywords: message = message.replace(kw, repl) return message使用...
www.jb51.net/article/2213...htm 2024-10-8

深入解析Python中函数的参数与作用域_python_脚本之家

在Python3.0及其以后的版本中,跟在*name或一个单独的*之后的、任何正式的或默认的参数名称,都是keyword-only参数,并且必须在调用时按照关键字传递。 >>细节 在使用混合的参数模型的时候,Python将会遵循下面有关顺序的法则。在函数调用中,参数必须以此顺序出现:任何位置参数(value),后面跟着任何关键字参数(name=value...
www.jb51.net/article/812...htm 2024-10-12

python基于搜索引擎实现文章查重功能_python_脚本之家

#搜索内容写入到搜素引擎中 def send_keyword(self): input = self.browser.find_element_by_id(self.engine_conf['searchTextID']) input.send_keys(self.conf['kw']) 以上方法中self.engine_conf['searchTextID']与self.conf['kw']通过初始化方法得到对应的搜索引擎配置信息,直接获取信息得到元素。 点击...
www.jb51.net/article/2114...htm 2024-10-3

如何使用Vue3实现文章内容中多个"关键词"标记高亮显示_vue.js_脚本...

content = content.replace(new RegExp(keyword, 'g'), `${keyword}`); } }); return content; } 好了,到此结束,继续摸鱼了。 总结 到此这篇关于如何使用Vue3实现文章内容中多个"关键词"标记高亮显示的文章就介绍到这了,更多相关Vue3关键词标记高亮显示内容请搜索脚本之家以前的文章或继续浏览下面的相关...
www.jb51.net/article/2673...htm 2024-10-11