|
""" |
|
"searchParameters": { |
|
"q": "apple inc", |
|
"gl": "us", |
|
"hl": "en", |
|
"autocorrect": true, |
|
"page": 1, |
|
"type": "search" # videos, images |
|
}, |
|
|
|
返回结果: |
|
result_keys: dict_keys(['search_metadata', 'search_parameters', 'search_information', 'organic_results', 'pagination', 'serpapi_pagination']) |
|
其中video_search: |
|
result_keys: dict_keys(['search_metadata', 'search_parameters', 'search_information', 'video_results', 'pagination', 'serpapi_pagination']) |
|
其中xxx_results是包含不同搜索结果(字典)的列表: |
|
dict_keys(['position', 'title', 'link', 'displayed_link', 'thumbnail', 'date', 'snippet', 'duration', 'rich_snippet']) |
|
{'position': 1, 'title': 'Pornhub 2020 most Popular MILF Videos', 'link': 'https://www.pornhub.com/view_video.php?viewkey=ph602ecf9f1563b', 'displayed_link': 'www.pornhub.com › view_video', 'thumbnail': 'https://serpapi.com/searches/66f1473aca6f0ca2eca329ff/images/d99e1712df529f4c186080a8f9741ab90c6104312b61494d31fa7ecab583106d.jpeg', 'date': 'Feb 18, 2021', 'snippet': 'Watch Pornhub 2020 Most Popular MILF videos on Pornhub.com, the best hardcore porn site. Pornhub is home to the widest selection of free ...', 'duration': '11:31', 'rich_snippet': {'top': {'extensions': ['Pornhub', 'Pornhub Models', 'Feb 18, 2021'], 'detected_extensions': {'feb': 18}}}} |
|
""" |
|
|
|
from serpapi import GoogleSearch |
|
|
|
params = { |
|
"engine": "google", |
|
"q": "苍井空最近的影片", |
|
|
|
"google_domain": "google.com", |
|
"gl": "us", |
|
"hl": "en", |
|
"num": 5, |
|
"api_key": "0942793f1c7ef851ce5dbcd8b6e3cf5e342a961c8a1b24fae9f552a679c2d444" |
|
} |
|
|
|
search = GoogleSearch(params) |
|
results = search.get_dict() |
|
print(type(results["organic_results"][0])) |
|
|