Skip to content

Instantly share code, notes, and snippets.

@hkamran80
Last active May 24, 2018 00:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hkamran80/def5efa32e7ba70cdc407c381473660b to your computer and use it in GitHub Desktop.
Save hkamran80/def5efa32e7ba70cdc407c381473660b to your computer and use it in GitHub Desktop.
googlesession_example.py
import googlelogin, getpass
username = "{your_google_email_here}"
password = getpass.getpass()
session = googlelogin.GoogleSession(username, password)
# Will return nothing
session.get("https://plus.google.com")
# Returns the content of the site
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment