python开源代码网站_一个python脚本,自动在网站中输入一些文本并获取其源代码...

实际上,这是一个很好的问题!在

首先你要做的是探索一点网站的源代码。

如果你看一下网站的源代码,你会看到这段代码

Please enter a text that you want to analyze.

... some text here ...

### This is a sample. Replace this with your own text.

您看到的是请求被发送到a.cgi地址,因为我们已经在地址上了

^{pr2}$

我们要发送的数据将被发送到与此连接的地址http://text0.mib.man.ac.uk/software/geniatagger/a.cgi

但是我们要送什么去那里?

我们需要一个数据,数据是作为“paragraph”POST参数发送的,您可以看到,由于表单具有值POST的属性方法,而textarea的名称是“paragraph”

我们使用这个python代码打开它import urllib

import urllib2

text = """

Further, while specific constitutive binding to the peri-kappa B site is seen in monocytes, stimulation with phorbol esters induces additional, specific binding. Understanding the monocyte-specific function of the peri-kappa B factor may ultimately provide insight into the different role monocytes and T-cells play in HIV pathogenesis.

### This is a sample. Replace this with your own text.

"""

data = {

"paragraph" : text

}

encoded_data = urllib.urlencode(data)

content = urllib2.urlopen("http://text0.mib.man.ac.uk/software/geniatagger/a.cgi",

encoded_data)

print content.readlines()

到目前为止我们有什么进展?我们为你的GUI程序提供了一个“引擎”。

您可以使用python的HTMLParser(可选)解析这个内容变量

你提到你想用图形用户界面显示这个?

您可以使用GTK或Qt来实现这一点,并将此功能映射到单个按钮上,您必须读取一个tutorial,这样做非常容易。如果你有问题,请评论这篇文章,我可以用GUI扩展这个答案

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值