automatestuff-ja
automatestuff-ja copied to clipboard
『退屈なことはPythonにやらせよう』のリポジトリ
Results
1
automatestuff-ja issues
Sort by
recently updated
recently updated
newest added
Here is the code that works. ```python import webbrowser, requests, bs4 , sys print('Googling...') res = requests.get('https://google.com/search?q=' + ' '.join(sys.argv[1:])) res.raise_for_status() soup = bs4.BeautifulSoup(res.text) linkElems = soup.select('div#main > div >...