如何抓取网页中一定大小的文件
我需要爬行包含数千个主机的列表,并找到至少两个植根于此的文件,这些文件大于作为参数给出的某个值。任何流行的(基于 python 的?)工具可能有帮助吗?
I need to crawl a list of several thousand hosts and find at least two files rooted there that are larger than some value, given as an argument. Can any popular (python based?) tool possibly help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下示例说明了如何获取 HTTP 服务器上文件的文件大小。
这里还有一个用于构建网络抓取工具的库: http://dev.scrapy.org/ 但我不知道对它了解不多(只是诚实地用谷歌搜索)。
Here is an example of how you can get the filesize of an file on a HTTP server.
There is also an library for building web scrapers here: http://dev.scrapy.org/ but I don't know much about it(just googled honestly).
我是这样做的。请参阅下面的代码。
Here is how I did it. See the code below.