16 lines
320 B
Python
16 lines
320 B
Python
import requests
|
|
import json
|
|
|
|
url = "https://google.serper.dev/search"
|
|
|
|
payload = json.dumps({
|
|
"q": "apple inc"
|
|
})
|
|
headers = {
|
|
'X-API-KEY': '8253b4f240b520194065312f90e85f9be0fa205f',
|
|
'Content-Type': 'application/json'
|
|
}
|
|
|
|
response = requests.request("POST", url, headers=headers, data=payload)
|
|
|
|
print(response.text) |