Skip to content

Instantly share code, notes, and snippets.

View Akilsrin's full-sized avatar

Akila Akilsrin

View GitHub Profile
@Adizlois
Adizlois / GoogleLogin_Mechanize.py
Last active August 26, 2022 16:49
Google login using mechanize in python....
import mechanize
import cookielib
#Dealing with Unicode encoding....
import sys
reload(sys)
sys.setdefaultencoding('utf8')
#Emulate browser....
br = mechanize.Browser()