gaoheran
gaoheran
上面的代码是用于微信公众号推送的接口代码,代码是通过点击菜单来得到执行的。 
我非要弄这个合并发生新闻消息,主要就是看逐条发送的不好看,而且逐条发也只能发3条,再发就被拒绝了。
这是WeRobot的[WeRoBot](https://github.com/offu/WeRoBot/tree/master)/[werobot](https://github.com/offu/WeRoBot/tree/master/werobot)/replies.py中的部分代码,问题可能与这个地方有关系。 ```python Article = renderable_named_tuple( typename="Article", field_names=("title", "description", "img", "url"), tempalte=to_text( """ """ ) ) class ArticlesReply(WeChatReply): TEMPLATE = to_text( """ {time} {count} {items} """ ) def __init__(self, message=None, **kwargs):...