Skip to content

Instantly share code, notes, and snippets.

@MindPatch
Created June 1, 2021 16:12
Show Gist options
  • Save MindPatch/579f1dc781e75b8b0e267986bf78eecb to your computer and use it in GitHub Desktop.
Save MindPatch/579f1dc781e75b8b0e267986bf78eecb to your computer and use it in GitHub Desktop.
Startpage
from startpage import StartPage
import sys
task = StartPage()
for numb,results in task.search(sys.argv[1],page=10).items():
for res in results:
print(res['link'])
@MindPatch
Copy link
Author

$ python3 task.py "site:.*.nokia.com"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment