| 1234567891011 |
- # Get the first 20 hits for: "Breaking Code" WordPress blog
- import os
- from dotenv import load_dotenv
- load_dotenv()
- print(f"http_proxy: {os.getenv('http_proxy')}")
- print(f"https_proxy: {os.getenv('https_proxy')}")
- from googlesearch import search
- import googlesearch
- print(googlesearch.get_random_user_agent())
- for url in search('"Breaking Code" WordPress blog', stop=2):
- print(url)
|