- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章python微信公众号之关键词自动回复由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
最近忙国赛的一个项目,我得做一个微信公众号。功能就是调数据并回复给用户,需要用户发送给公众号一个关键词,通过关键词自动回复消息.
这时就是查询微信公众平台文档了,地址如下: 文档 。
按照它的入门指南,我基本上了解了用户给公众号发送消息的一个机制,并且一旦给公众号发送消息,在开发者后台,会收到公众平台发送的一个xml,所以通过编写Python脚本进行xml的解析与自动发送功能.
如果用户给公众号发送一段text消息,比如“hello”,那么后台就会收到一个xml为:
1
2
3
4
5
6
7
|
<
xml
>
<
ToUserName
>
<![CDATA[公众号]]>
</
ToUserName
>
<
FromUserName
>
<![CDATA[粉丝号]]>
</
FromUserName
>
<
CreateTime
>1460541339</
CreateTime
>
<
MsgType
>
<![CDATA[text]]>
</
MsgType
>
<
Content
>
<![CDATA[hello]]>
</
Content
>
</
xml
>
|
注意这里面有一些标记对于我们开发者来说是非常有用的:ToUserName,FromUserName,MsgType,Content 所以我们只要知道了这些信息,我们就能做到自动回复的功能.
我们发现这个MsgType 为 ‘text'。而微信中的MsgType有“text”(文本)、“image”(图像)、“voice”(语音)、“video”(视频)、“shortvideo”(短视频)、“location”(位置)、“link”(链接)、“event”(事件) 。
首先我们写一个main.py文件 。
main.py 。
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- coding: utf-8 -*-
# filename: main.py
import
web
from
handle
import
Handle
urls
=
(
'/wx'
,
'Handle'
,
)
if
__name__
=
=
'__main__'
:
app
=
web.application(urls,
globals
())
app.run()
|
然后写一个receive.py,作为接受用户发送过来的数据,并解析xml,返回数据的脚本.
receive.py 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
import
xml.etree.ElementTree as ET
def
parse_xml(web_data):
if
len
(web_data)
=
=
0
:
return
None
xmlData
=
ET.fromstring(web_data)
msg_type
=
xmlData.find(
'MsgType'
).text
if
msg_type
=
=
'text'
:
#print('text')
return
TextMsg(xmlData)
elif
msg_type
=
=
'image'
:
return
ImageMsg(xmlData)
elif
msg_type
=
=
'location'
:
#print('location')
return
LocationMsg(xmlData)
elif
msg_type
=
=
'event'
:
#print('event')
return
EventMsg(xmlData)
class
Event(
object
):
def
__init__(
self
, xmlData):
self
.ToUserName
=
xmlData.find(
'ToUserName'
).text
self
.FromUserName
=
xmlData.find(
'FromUserName'
).text
self
.CreateTime
=
xmlData.find(
'CreateTime'
).text
self
.MsgType
=
xmlData.find(
'MsgType'
).text
self
.Eventkey
=
xmlData.find(
'EventKey'
).text
class
Msg(
object
):
def
__init__(
self
, xmlData):
self
.ToUserName
=
xmlData.find(
'ToUserName'
).text
self
.FromUserName
=
xmlData.find(
'FromUserName'
).text
self
.CreateTime
=
xmlData.find(
'CreateTime'
).text
self
.MsgType
=
xmlData.find(
'MsgType'
).text
self
.MsgId
=
xmlData.find(
'MsgId'
).text
class
TextMsg(Msg):
def
__init__(
self
, xmlData):
Msg.__init__(
self
, xmlData)
self
.Content
=
xmlData.find(
'Content'
).text.encode(
"utf-8"
)
class
ImageMsg(Msg):
def
__init__(
self
, xmlData):
Msg.__init__(
self
, xmlData)
self
.PicUrl
=
xmlData.find(
'PicUrl'
).text
self
.MediaId
=
xmlData.find(
'MediaId'
).text
class
LocationMsg(Msg):
def
__init__(
self
, xmlData):
Msg.__init__(
self
, xmlData)
self
.Location_X
=
xmlData.find(
'Location_X'
).text
self
.Location_Y
=
xmlData.find(
'Location_Y'
).text
class
EventMsg(Msg):
def
__init__(
self
, xmlData):
Event.__init__(
self
, xmlData)
self
.Event
=
xmlData.find(
'Event'
).text
|
其中,我们使用xml.etree.ElementTree,这是一个简单而有效的用户解析和创建XML数据的API。而fromstring()就是解析xml的函数,然后通过标签进行find(),即可得到标记内的内容.
同时还要写一个reply.py,作为自动返回数据的脚本。 刚才提到了,用户给公众号发送消息,公众号的后台会接收到一个xml,那么如果公众号给用户发送消息呢,其实也就是公众号给用户发送一个xml,只是ToUserName,FromUserName换了一下而已,内容自己定.
1
2
3
4
5
6
7
|
<
xml
>
<
ToUserName
>
<![CDATA[粉丝号]]>
</
ToUserName
>
<
FromUserName
>
<![CDATA[公众号]]>
</
FromUserName
>
<
CreateTime
>1460541339</
CreateTime
>
<
MsgType
>
<![CDATA[text]]>
</
MsgType
>
<
Content
>
<![CDATA[test]]>
</
Content
>
</
xml
>
|
reply.py 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import
time
class
Msg(
object
):
def
__init__(
self
):
pass
def
send(
self
):
return
"success"
class
TextMsg(Msg):
def
__init__(
self
, toUserName, fromUserName, content):
self
.__dict
=
dict
()
self
.__dict[
'ToUserName'
]
=
toUserName
self
.__dict[
'FromUserName'
]
=
fromUserName
self
.__dict[
'CreateTime'
]
=
int
(time.time())
self
.__dict[
'Content'
]
=
content
def
send(
self
):
XmlForm
=
"""
<xml>
<ToUserName><![CDATA[{ToUserName}]]></ToUserName>
<FromUserName><![CDATA[{FromUserName}]]></FromUserName>
<CreateTime>{CreateTime}</CreateTime>
<MsgType><![CDATA[text]]></MsgType>
<Content><![CDATA[{Content}]]></Content>
</xml>
"""
return
XmlForm.
format
(
*
*
self
.__dict)
class
ImageMsg(Msg):
def
__init__(
self
, toUserName, fromUserName, mediaId):
self
.__dict
=
dict
()
self
.__dict[
'ToUserName'
]
=
toUserName
self
.__dict[
'FromUserName'
]
=
fromUserName
self
.__dict[
'CreateTime'
]
=
int
(time.time())
self
.__dict[
'MediaId'
]
=
mediaId
def
send(
self
):
XmlForm
=
"""
<xml>
<ToUserName><![CDATA[{ToUserName}]]></ToUserName>
<FromUserName><![CDATA[{FromUserName}]]></FromUserName>
<CreateTime>{CreateTime}</CreateTime>
<MsgType><![CDATA[image]]></MsgType>
<Image>
<MediaId><![CDATA[{MediaId}]]></MediaId>
</Image>
</xml>
"""
return
XmlForm.
format
(
*
*
self
.__dict)
|
接着我们要写一个handle.py,作为对消息进行反映处理(自动回复)的脚本.
handle.py 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
import
web
import
reply
import
receive
import
JsonData
import
xml.dom.minidom
class
Handle(
object
):
def
GET(
self
):
try
:
data
=
web.
input
()
if
len
(data)
=
=
0
:
return
"hello, this is handle view"
signature
=
data.signature
timestamp
=
data.timestamp
nonce
=
data.nonce
echostr
=
data.echostr
token
=
"hello2016"
list
=
[token, timestamp, nonce]
list
.sort()
sha1
=
hashlib.sha1()
map
(sha1.update,
list
)
hashcode
=
sha1.hexdigest()
#print("handle/GET func: hashcode, signature: ", hashcode, signature)
if
hashcode
=
=
signature:
return
echostr
else
:
return
""
except
Exception as Argument:
return
Argument
def
POST(
self
):
try
:
webData
=
web.data()
#print(webData)
recMsg
=
receive.parse_xml(webData)
#print(recMsg)
if
isinstance
(recMsg, receive.Msg):
toUser
=
recMsg.FromUserName
fromUser
=
recMsg.ToUserName
if
recMsg.MsgType
=
=
'text'
:
try
:
a
=
JsonData.praserJsonFile()
#print(a)
except
Exception as Argument:
return
Argument
if
a[
'status'
]
=
=
'1'
:
content
=
"No equipment"
else
:
if
a[
'data'
][
0
][
'weather'
]
=
=
'0'
:
israin
=
'7.没有下雨'
else
:
israin
=
'7.下雨'
#print(israin)
content
=
"此设备数据如下:\n"
+
"1.id号为 "
+
a[
'data'
][
0
][
'id'
]
+
"\n"
+
"2.温度为 "
+
a[
'data'
][
0
][
'temp'
]
+
"\n"
+
"3.湿度为 "
+
a[
'data'
][
0
][
'humidity'
]
+
"\n"
+
"4.PM2.5浓度为 "
+
a[
'data'
][
0
][
'pm25'
]
+
"ug\n"
+
"5.PM10浓度为 "
+
a[
'data'
][
0
][
'pm10'
]
+
"\n"
+
"6.光照 "
+
a[
'data'
][
0
][
'illumination'
]
+
"L\n"
+
israin
#content = "%s\n%s %s\n%s %s\n%s %s\n%s %s\n%s %s\n%s" %('环境数据如下:','设备id号为',a['data']['id'],'temp is', a['data']['temp'], 'humidity is', a['data']['humidity'],'PM25 is',a['data']['pm25'],'illumination',a['data']['illumination'],israin)
#print(content)
replyMsg
=
reply.TextMsg(toUser, fromUser, content)
return
replyMsg.send()
if
recMsg.MsgType
=
=
'image'
:
mediaId
=
recMsg.MediaId
replyMsg
=
reply.ImageMsg(toUser, fromUser, mediaId)
return
replyMsg.send()
if
recMsg.MsgType
=
=
'location'
:
location_x
=
recMsg.Location_X
location_y
=
recMsg.Location_Y
content
=
"您所在的位置是在:经度为"
+
location_x
+
";纬度为:"
+
location_y
replyMsg
=
reply.TextMsg(toUser, fromUser, content)
return
replyMsg.send()
if
recMsg.MsgType
=
=
'event'
:
#print('yes')
event
=
recMsg.Event
if
event
=
=
'subscribe'
:
content
=
"欢迎关注,您好!雨燕城市环境小助手微信公众号:发送 获取数据,公众号会自动发送当前环境数据(目前为调试数据,不是真实数据).将要调试GPS,根据手机定位位置与设备位置相关联,取最近距离的设备所获取到的数据并进行返回."
replyMsg
=
reply.TextMsg(toUser, fromUser, content)
return
replyMsg.send()
else
:
return
reply.Msg().send()
else
:
print
(
"not do"
)
return
reply.Msg().send()
except
Exception as Argment:
return
Argment
|
注:代码贴了目前写的所有功能,接收关键字并自动返回数据;关注后自动回复欢迎文字;发送定位获得GPS信息.
那么我怎么样使用微信公众号去调取服务器上的数据呢,因为有了数据的json文件,我们就可以使用Python脚本进行json的解析,然后将数据在content中体现出来就可以了.
Json文件解析 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import
types
import
urllib.request
import
json
def
praserJsonFile():
url
=
"http://118.89.244.53:8080/index.php/home/api/present_data"
data
=
urllib.request.urlopen(url).read()
value
=
json.loads(data.decode())
#print(value)
#print(value['data'])
return
value
#praserJsonFile()
|
这个value就是我们解析json出来的一个list 。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://blog.csdn.net/karry_zzj/article/details/78451901 。
最后此篇关于python微信公众号之关键词自动回复的文章就讲到这里了,如果你想了解更多关于python微信公众号之关键词自动回复的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!