Skip to content

Instantly share code, notes, and snippets.

@robinfang
Last active August 29, 2015 14:00
Show Gist options
  • Save robinfang/11113399 to your computer and use it in GitHub Desktop.
Save robinfang/11113399 to your computer and use it in GitHub Desktop.
text= doc.xpath("script")[-1].text
aaa = text.split("\"html\":\"")
data = aaa[1].rstrip("\"})")
f = codecs.open("gggggodlike.html", 'w', encoding = 'utf-8') # 用到了codecs,需要先import进来
f.write(data)
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment