I am using mechanize to parse html of website, but with this website i got strange result.
from mechanize import Browser
br = Browser()
r = br.open("http://www.heavenplaza.com")
result = r.read()
result is something which i can not understand. you can see here: http://paste2.org/p/1556077
Anyone can have some method to get that website HTML? with mechanize or urllib.
Thanks