是否可以在 beautiful Soup 中编写搜索引擎代码
我正在使用 Beautiful Soup 来解析网页。 BS 中是否有任何我可以使用的功能来制作搜索引擎或抓取网站以将其索引到数据库中。
I am using Beautiful Soup for parsing web pages.
Are there any functions in BS which i can use i making search engine or crawling the website to index it in database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,BeautifulSoup 不是搜索引擎。它也不是瑞士军刀,也不能给你做三明治。您将需要一个数据库(最好是针对搜索进行优化的数据库,例如 Sphinx 或 Lucene)来执行此操作。
No, BeautifulSoup is not a search engine. It is also not a Swiss Army knife, nor can it make you a sandwich. You will need a database (preferably one that's optimized for search, like Sphinx or Lucene) to do that.