We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ab0003 commit 98f4327Copy full SHA for 98f4327
Modules/WebScraping/BeautifulSoup/google.py
@@ -4,4 +4,16 @@
4
by middle-clicking on the first few top links. That's a lot of work. I want
5
to just type the search term on my command line and all the top links
6
automatically open on my computer. Let's do that
7
+
8
+ What the program will do:
9
+ * Gets search keywords from command line arguments
10
+ * Retrieves the search results page
11
+ * Opens the browser tab for each result
12
13
+ This is done by:
14
+ * Reads the command line arguments from sys.argv
15
+ * Fetch the search results page with the requests moduls
16
+ * Finds the links to each search result
17
+ * Call the webbrowser.open() function to open the browser
18
'''
19
0 commit comments