我想检索 Google 搜索结果计数( 106,000,000 个结果(0.58 秒))。我用 Python 写了这个脚本:
import requests, webbrowser
from bs4 import BeautifulSoup
user_input = input("Type in query: ")
print("Googling..")
link = "http://www.google.com/search?q=" + user_input
google_search = requests.get(link)
print(google_search.headers)
#print it out as file
with open("Output.html", "w") as text_file:
print("{}".format(google_search.text), file=text_file)
但是当我查看文件时,结果统计信息就丢失了。除了 Google Search API 之外,还有什么方法可以做到这一点,这很糟糕,因为它是有限的,甚至无法获得正确的结果。我写过 Python 和 C#,因为我两者都懂。
慕姐8265434
DIEA
相关分类