I'm trying python mechanize module in order to write some scripts. When i run it i get the following error.What actually is this set_handle_gzip ?
manoj@ubuntu:~/pyth$ python rock.py │
rock.py:15: UserWarning: gzip transfer encoding is experimental! │
br.set_handle_gzip(True) │
Traceback (most recent call last): │
File "rock.py", line 60, in <module> │
br.follow_link(text='Sign out') │
File "/usr/lib/python2.7/dist-packages/mechanize/_mechanize.py", line│
569, in follow_link │
return self.open(self.click_link(link, **kwds)) │
File "/usr/lib/python2.7/dist-packages/mechanize/_mechanize.py", line│
553, in click_link │
link = self.find_link(**kwds) │
File "/usr/lib/python2.7/dist-packages/mechanize/_mechanize.py", line│
620, in find_link
raise LinkNotFoundError() │
mechanize._mechanize.LinkNotFoundError
and how can i overcome this error?