-
-
Save itsmenaga/f9bba21b09b71b7b86480a836c147818 to your computer and use it in GitHub Desktop.
Little Python script to open a list of URLs from a file in browser tabs, n tabs at a time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python3 | |
import webbrowser, sys | |
if len(sys.argv) < 3: | |
print("Usage: openinbrowser.py ./urls.txt 20") | |
quit() | |
f = open(sys.argv[1]) | |
tabs = int(sys.argv[2]) | |
counter = 1 | |
for url in f: | |
counter += 1 | |
webbrowser.open_new_tab(url) | |
if counter == tabs: | |
input("Press any key to continue...") | |
counter = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment