| from serpapi import GoogleSearch | |
| q = "Japanese porn videos" | |
| params = { | |
| "engine": "google_videos", | |
| "q": q, | |
| "google_domain": "google.com.hk", | |
| "gl": "hk", | |
| "hl": "en", | |
| "num": 5, | |
| "safe": "", | |
| "api_key": "92df349c4f382ed7d4a1394bf45f9433b04629702ac6267758d727954607ef07", | |
| } | |
| search = GoogleSearch(params).get_dict() | |
| print(search["video_results"]) |