如何通过Google搜索抓取特定域的链接?

发布于 2024-12-05 18:15:10 字数 256 浏览 1 评论 0原文

我有一个印度歌曲的歌词语料库,需要用发行年份来标记它们,以进行我正在进行的实验。

有一个网站(lyricsindia.net),其中有这些歌词的详尽数据库,但遗憾的是无法在该网站上搜索歌词。相反,当我使用部分歌词作为搜索字符串进行谷歌搜索时,lyricindia.net 上该歌曲的链接始终位于前 10 个结果中。

现在,我想知道是否可以使用像 scrapy 这样的网络爬行框架来使用搜索字符串作为爬行的起点。我遇到的每个 Scrapy 教程都以起始 URL 开头。

I have a corpus of lyrics of Indian songs and need to tag them with their year of release for an experiment I am working on.

There is a website(lyricsindia.net), which has an exhaustive database of these lyrics with years, but unfortunately the lyrics cannot be searched on the website. Instead, when I google with part of lyrics as the search string, the link to the song on lyricsindia.net is always in the top-10 results.

Now, I was wondering if it was possible using web-crawling frameworks like scrapy to use a search-string as a starting point for crawling. Every Scrapy tutorial, I have come across starts with a starting URL.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

极致的悲 2024-12-12 18:15:10

您的搜索字符串可能是 Scrapy 网址的一部分。类似 google.com?q=my+string

或者,您可以检索搜索表单,并用您的字符串填充它,例如:

return [FormRequest.from_response(response,
            formdata={'search': 'you\'re search string'},
            callback=self.parse)]

我确信 Scrapy 可能会做您想做的事情。

Your search string could be a part of the url with Scrapy. something like google.com?q=my+string

Or, you can retrieve the search form, and fill it with your string, something like :

return [FormRequest.from_response(response,
            formdata={'search': 'you\'re search string'},
            callback=self.parse)]

I'm sure Scrapy might do what you want to do.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文