Skip to content

Instantly share code, notes, and snippets.

@gutierri
Created March 5, 2017 16:18
Show Gist options
  • Save gutierri/4ea627c0893669de63c20b65ebd305c6 to your computer and use it in GitHub Desktop.
Save gutierri/4ea627c0893669de63c20b65ebd305c6 to your computer and use it in GitHub Desktop.
unstart all github profile with splinter (python)
from splinter import Browser
while True:
with Browser() as browser:
browser.visit('https://github.com/gutierri?tab=stars')
button = browser.find_by_css('.btn.btn-sm.js-toggler-target')
if not button:
break
browser.execute_script("document.querySelectorAll('button.btn.btn-sm.js-toggler-target').forEach((e) => e.click());")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment