Skip to content

Commit

Permalink
Change some spelling problems in docs (littlecodersh#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
congbo authored and littlecodersh committed Oct 21, 2016
1 parent aacb4bd commit 3d481dc
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ itchat.run()

一些进阶应用可以在Advanced uses中看到,或者你也可以阅览[文档][document]



## Have a try

这是一个基于这一项目的[开源小机器人][robot-source-code],百闻不如一见,有兴趣可以尝试一下。
Expand Down Expand Up @@ -174,6 +172,10 @@ Q: 如何通过这个包将自己的微信号变为控制器?

A: 有两种方式:发送、接受自己UserName的消息;发送接收文件传输助手(filehelper)的消息

Q: 为什么我发送信息的时候部分信息没有成功发出来?

A: 有些账号是天生无法给自己的账号发送信息的,建议使用`filehelper`代替。另外,接口调用是有频率限制,限制一下连续发送信息之间的时间间隔即可。

## Author

[LittleCoder][littlecodersh]: 整体构架及完成Python2 Python3版本。
Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,10 @@ Q: How to use this package to use my wechat as an monitor?

A: There are two ways: communicate with your own account or with filehelper.

Q: Why sometimes I can't send messages?

A: Some account simply can't send messages to yourself, so use `filehelper` instead. Besides, there's limitation in calling api, so set some gap between them.

**Comments**

If you have any problems or suggestions, you can talk to me in this `issue <https://github.com/littlecodersh/ItChat/issues/1>`__
Expand Down
4 changes: 4 additions & 0 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ Q: How to use this package to use my wechat as an monitor?

A: There are two ways: communicate with your own account or with filehelper.

Q: Why sometimes I can't send messages?

A: Some account simply can't send messages to yourself, so use `filehelper` instead. Besides, there's limitation in calling api, so set some gap between them.

## Author

[LittleCoder][littlecodersh]: Structure and py2 py3 version
Expand Down
4 changes: 2 additions & 2 deletions docs/6.Member stuff.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ itchat.search_friends(name='LittleCoder机器人', wechatAccount='littlecodersh'
# 获取特定UserName的公众号,返回值为一个字典
itchat.search_mps(userName='@abcdefg1234567')
# 获取名字中含有特定字符的公众号,返回值为一个字典的列表
itcaht.search_mps(name='LittleCoder')
itchat.search_mps(name='LittleCoder')
# 以下方法相当于仅特定了UserName
itchat.search_mps(userName='@abcdefg1234567', name='LittleCoder')
```
Expand All @@ -77,7 +77,7 @@ itchat.search_mps(userName='@abcdefg1234567', name='LittleCoder')
# 获取特定UserName的群聊,返回值为一个字典
itchat.search_chatrooms(userName='@abcdefg1234567')
# 获取名字中含有特定字符的群聊,返回值为一个字典的列表
itcaht.search_chatrooms(name='LittleCoder')
itchat.search_chatrooms(name='LittleCoder')
# 以下方法相当于仅特定了UserName
itchat.search_chatrooms(userName='@abcdefg1234567', name='LittleCoder')
```
Expand Down
10 changes: 7 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pip install itchat
```python
import itchat

@itcaht.msg_register(itchat.content.TEXT)
@itchat.msg_register(itchat.content.TEXT)
def text_reply(msg):
itchat.send(msg['Text'], msg['FromUserName'])

Expand All @@ -35,8 +35,6 @@ itchat.run()

一些进阶应用可以在Advanced uses中看到,或者你也可以阅览[文档][document]



## Have a try

这是一个基于这一项目的[开源小机器人][robot-source-code],百闻不如一见,有兴趣可以尝试一下。
Expand Down Expand Up @@ -174,6 +172,10 @@ Q: 如何通过这个包将自己的微信号变为控制器?

A: 有两种方式:发送、接受自己UserName的消息;发送接收文件传输助手(filehelper)的消息

Q: 为什么我发送信息的时候部分信息没有成功发出来?

A: 有些账号是天生无法给自己的账号发送信息的,建议使用`filehelper`代替。另外,接口调用是有频率限制,限制一下连续发送信息之间的时间间隔即可。

## Author

[LittleCoder][littlecodersh]: 整体构架及完成Python2 Python3版本。
Expand All @@ -192,6 +194,8 @@ A: 有两种方式:发送、接受自己UserName的消息;发送接收文件

或者也可以在gitter上交流:[![Gitter][gitter-picture]][gitter]

当然也可以加入我们新建的QQ群讨论:549762872

[gitter-picture]: https://badges.gitter.im/littlecodersh/ItChat.svg
[gitter]: https://gitter.im/littlecodersh/ItChat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
[py27]: https://img.shields.io/badge/python-2.7-ff69b4.svg
Expand Down
2 changes: 1 addition & 1 deletion itchat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .client import client
from . import content # this is for creating pyc

__version__ = '1.1.16'
__version__ = '1.1.17'

__client = client()
HOT_RELOAD = False
Expand Down

0 comments on commit 3d481dc

Please sign in to comment.