再加一个EmEditor中Python作为宏脚本的例子
时间:2011-03-04 来源:宣华华
#language = "Python"
#encoding=gbk
import urllib2
response = urllib2.urlopen('http://www.baidu.com/')
html = response.read()
Window.document.write(html);
相关阅读 更多 +
时间:2011-03-04 来源:宣华华
#language = "Python"
#encoding=gbk
import urllib2
response = urllib2.urlopen('http://www.baidu.com/')
html = response.read()
Window.document.write(html);