如何获取带有查询结果的谷歌页面?

发布于 2024-12-28 11:24:48 字数 237 浏览 1 评论 0原文

我想从“www.google.com”下载查询结果。我有这个代码:

string query = "where buy a nice dress in Londod";
string site = "www.google.com";
string page = ??; //What I must to do in order to get this page

有什么办法可以做我想做的事吗?

I want to download from "www.google.com" with results of query. I have this code:

string query = "where buy a nice dress in Londod";
string site = "www.google.com";
string page = ??; //What I must to do in order to get this page

Is there any way to do what I want?

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

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

发布评论

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

评论(2

九厘米的零° 2025-01-04 11:24:48

基本的谷歌查询可以按以下方式格式化:(

http://www.google.com/#q=day+of+the+tentacle

在q=之后搜索关键字)

Basic google queries can be formatted the following way:

http://www.google.com/#q=day+of+the+tentacle

(search keywords after q=)

渔村楼浪 2025-01-04 11:24:48

你需要创建一个网络爬虫,如果你使用python,那么简单如下:

import urllib2

url = "http://www.google.com"

request = urllib2.Request(url)
response = urllib2.urlopen(request)
document = response.read()
print document

you need to create a web crawler, if you use python, it is simple as this:

import urllib2

url = "http://www.google.com"

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