Skip to content

Commit

Permalink
Merge branch 'release/v0.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
doraemonext committed Feb 5, 2016
2 parents 544f339 + 2324b7a commit 9fed6c6
Show file tree
Hide file tree
Showing 12 changed files with 40 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

.. image:: docs/docs/img/logo.png

当前最新版本:v0.6.0
当前最新版本:v0.6.1

wechat-python-sdk 希望能帮你解决微信公众平台开发中的种种不便,让你可以专注于业务逻辑本身,而不是浪费精力在与微信服务器复杂的交互中。

Expand Down Expand Up @@ -82,6 +82,12 @@ wechat-python-sdk 于 2016 年 2 月份进行了一次较大规模升级,升
ChangeLog
----------------------------

v0.6.1
^^^^^^^^^^^^^^^^^^^^^^^^^^^

* 修正了 jsapi_ticket 的获取出错问题
* 代码结构的优化

v0.6.0
^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
5 changes: 5 additions & 0 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ wechat-python-sdk 于 2016 年 2 月份进行了一次较大规模升级,升

## 更新历史

### v0.6.1

* 修正了 jsapi_ticket 的获取出错问题
* 代码结构的优化

### v0.6.0

* 重新编写了文档, 添加了快速上手教程
Expand Down
3 changes: 3 additions & 0 deletions old_docs/basic.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
微信官方接口操作 WechatBasic
=================================

文档已经转移到新地址: `http://wechat-python-sdk.com/ <http://wechat-python-sdk.com/>`_
=======================================================================================================================

.. py:class:: wechat_sdk.basic.WechatBasic(token=None, appid=None, appsecret=None, partnerid=None, partnerkey=None, paysignkey=None, access_token=None, access_token_expires_at=None, jsapi_ticket=None, jsapi_ticket_expires_at=None, checkssl=False)
微信基本功能类
Expand Down
3 changes: 3 additions & 0 deletions old_docs/context.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
上下文对话支持
==============================

文档已经转移到新地址: `http://wechat-python-sdk.com/ <http://wechat-python-sdk.com/>`_
=======================================================================================================================

为了实现用户状态的维持与记录, ``wechat-python-sdk`` 实现了上下文对话功能。

**由于作者精力有限,目前仅实现了 Django 下的上下文对话支持,其他方式或其他框架下的上下文对话适配将在后续版本中逐渐完成。如果您有精力、有兴趣,欢迎向本项目贡献代码 :)**
Expand Down
3 changes: 3 additions & 0 deletions old_docs/exceptions.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
异常类
=====================

文档已经转移到新地址: `http://wechat-python-sdk.com/ <http://wechat-python-sdk.com/>`_
=======================================================================================================================

.. py:class:: wechat_sdk.exceptions.NeedParamError()
构造参数提供不全异常
Expand Down
3 changes: 3 additions & 0 deletions old_docs/ext.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
微信非官方接口操作 WechatExt
==============================

文档已经转移到新地址: `http://wechat-python-sdk.com/ <http://wechat-python-sdk.com/>`_
=======================================================================================================================

.. py:class:: wechat_sdk.ext.WechatExt(username, password [, token=None, cookies=None, appid=None, plugin_token=None, ifencodepwd=False, login=True, checkssl=False])
微信扩展功能类
Expand Down
3 changes: 3 additions & 0 deletions old_docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
FAQ 汇总
==========================

文档已经转移到新地址: `http://wechat-python-sdk.com/ <http://wechat-python-sdk.com/>`_
=======================================================================================================================

1. 当使用 == 操作符比较两边内容时出现警告:

::
Expand Down
3 changes: 3 additions & 0 deletions old_docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
微信公众平台 Python 开发包文档
====================================

文档已经转移到新地址: `http://wechat-python-sdk.com/ <http://wechat-python-sdk.com/>`_
=======================================================================================================================

非官方微信公众平台 Python 开发包,包括官方接口和非官方接口。

* 官方接口依据公众平台开发者文档编写,可以实现公众平台开发者文档中的所有内容,具体不列举,请查看 ``WechatBasic`` 文档;
Expand Down
3 changes: 3 additions & 0 deletions old_docs/install.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
安装
=================

文档已经转移到新地址: `http://wechat-python-sdk.com/ <http://wechat-python-sdk.com/>`_
=======================================================================================================================

自动安装
-----------------

Expand Down
3 changes: 3 additions & 0 deletions old_docs/messages.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
微信消息类 WechatMessage
===========================

文档已经转移到新地址: `http://wechat-python-sdk.com/ <http://wechat-python-sdk.com/>`_
=======================================================================================================================

目前此开发包提供以下几种消息类:``TextMessage`` (文本消息类), ``ImageMessage`` (图片消息类), ``VideoMessage`` (视频消息类), ``LocationMessage`` (位置消息类), ``LinkMessage`` (链接消息类), ``EventMessage`` (事件消息类), ``VoiceMessage`` (语音消息类),它们都继承自 ``WechatMessage`` (公共消息类)

这些消息类都在 ``wechat_sdk.messages`` 中定义
Expand Down
3 changes: 3 additions & 0 deletions old_docs/tutorial.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
快速上手
=========================

文档已经转移到新地址: `http://wechat-python-sdk.com/ <http://wechat-python-sdk.com/>`_
=======================================================================================================================

本页内容提供了一些可以快速上手的短小示例代码,并假设你已经安装了 ``wechat-sdk`` 。如果还没有,请返回安装一节进行安装。

注意事项
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='wechat-sdk',
version='0.6.0',
version='0.6.1',
keywords=('wechat', 'sdk', 'wechat sdk'),
description=u'微信公众平台Python开发包',
long_description=open("README.rst").read(),
Expand Down

0 comments on commit 9fed6c6

Please sign in to comment.