README.md 13.8 KB
Newer Older
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
1
![Wechaty](https://raw.githubusercontent.com/zixia/wechaty/master/image/wechaty-logo-en.png)
2
# Wechaty [![Linux Circle CI](https://circleci.com/gh/zixia/wechaty.svg?style=svg)](https://circleci.com/gh/zixia/wechaty) [![Linux Build Status](https://travis-ci.org/zixia/wechaty.svg?branch=master)](https://travis-ci.org/zixia/wechaty) [![Win32 Build status](https://ci.appveyor.com/api/projects/status/60fgkemki7e6upb9?svg=true)](https://ci.appveyor.com/project/zixia/wechaty)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
3

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
4
Connecting ChatBots.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
5

6
Wechaty is a Chatbot Library for Wechat **Personal** Account. (Supports [Linux](https://travis-ci.org/zixia/wechaty), [Win32](https://ci.appveyor.com/project/zixia/wechaty) and OSX)
7

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
8
> Easy creating personal account wechat robot in 9 lines of code.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
9

T
The Gitter Badger 已提交
10
[![Join the chat at https://gitter.im/zixia/wechaty](https://badges.gitter.im/zixia/wechaty.svg)](https://gitter.im/zixia/wechaty?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
11
[![node](https://img.shields.io/node/v/wechaty.svg?maxAge=2592000)](https://nodejs.org/)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
12
[![Repo Size](https://reposs.herokuapp.com/?path=zixia/wechaty)]()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
13
[![Coverage Status](https://coveralls.io/repos/github/zixia/wechaty/badge.svg?branch=master)](https://coveralls.io/github/zixia/wechaty?branch=master)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
14
[![npm version](https://badge.fury.io/js/wechaty.svg)](https://badge.fury.io/js/wechaty)
15 16
[![Downloads][downloads-image]][downloads-url]

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
17
# Why
18
My daily life/work depends on too much chat on wechat.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
19
* I almost have 14,000 wechat friends till May 2014, before wechat restricts a total number of friends to 5,000.
20
* I almost have 400 wechat rooms that most of them have more than 400 members.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
21 22 23

Can you image that? I'm dying...

24
So a tireless bot working for me 24x7 on wechat, moniting/filtering the most important message is badly needed. For example: highlights discusstion which contains the KEYWORDS I want to follow up(especially in a noisy room). ;-)
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
25 26

# Examples
Huan (李卓桓)'s avatar
v0.0.6  
Huan (李卓桓) 已提交
27
Wechaty is super easy to use: 10 lines of javascript is enough for your first wechat robot.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
28

29 30
## 1. Basic: 9 lines
The following 9 lines of code implement a bot who reply "roger" for every message received:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
31

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
32
```javascript
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
33
const Wechaty = require('wechaty')
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
34
const bot = new Wechaty()
35 36 37
bot.init().on('scan', ({url, code}) => {
  console.log(`Use Wechat to scan qrcode in url to login: ${code}\n${url}`)
}).on('message', m => {
38 39 40
  !m.self() && bot.send(m.reply('roger')) // 1. reply
  .then(() => console.log(`RECV: ${m}, REPLY: "roger"`)) // 2. log message
  .catch(e => console.error(e)) // 3. catch exception
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
41 42 43
})
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
44
Notice that you need to wait a moment while bot trys to get the login QRCode from Wechat. As soon as the bot gets login QRCode url, he will print url out. You need to scan the qrcode on wechat, and confirm login.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
45

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
46
After that, bot will be on duty. (roger-bot source can be found at [here](https://github.com/zixia/wechaty/blob/master/example/roger-bot.js))
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
47

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
48 49
## 2. Advanced: dozens of lines
Here's an chatbot [ding-dong-bot](https://github.com/zixia/wechaty/blob/master/example/ding-dong-bot.js) who can reply _dong_ when receives a message _ding_.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
50

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
51 52
## 3. Hardcore: hundreds of lines
Here's a chatbot [api-ai-bot](https://github.com/zixia/wechaty/blob/master/example/api-ai-bot.js), who can slightly understand NLP.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
53

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
54
Natual Language Understanding enabled by [api.AI](https://api.ai), you can get your module on api.AI by it's free plan.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
55

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
56
# Installation
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
57

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
58
## Install from NPM
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
59
Use NPM is recommended to install a stable version of Wechaty published on NPM.com
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
60 61
```shell
npm install --save wechaty
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
62 63
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
64
Then you are set.
65

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
66 67 68 69 70 71 72
## Install to Cloud9 IDE
[Cloud9 IDE](https://c9.io/) is Google Docs for Code.

> Cloud9 IDE written in JavaScript, uses Node.js on the back-end. It uses Docker containers for its workspaces, and hosted on Google Compute Engine.

### 1. Open Cloud9 IDE

73
Just one click here: <a href="https://c9.io/open/?name=Wechaty&type=nodejs&clone_url=https://github.com/zixia/wechaty.git&description=Wechat%20for%20Bot&selection_file=/example/ding-dong-bot.js" target="_blank"><img src="https://img.shields.io/badge/open%20in-Cloud9%20IDE-blue.svg" alt="Open Wechaty in Cloud9 IDE"></a>
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
74

75 76
### 2. Set default to Node.js v6
Open Terminal in Cloud9 IDE, use nvm to install nodejs v6, which is required by Wechaty.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90

```bash
$ nvm install 6
Downloading https://nodejs.org/dist/v6.2.1/node-v6.2.1-linux-x64.tar.xz...
######################################################################## 100.0%
Now using node v6.2.1 (npm v3.9.3)

$ nvm alias default 6
default -> 6 (-> v6.2.1)

$ node --version
v6.2.1
```

91 92 93 94 95 96 97 98
### 3. Run
```bash
$ npm install

$ node example/ding-dong-bot.js
```

### 4. Enjoy Cloud9 IDE
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
99 100 101
You are set.

## Install from Github
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
102
In case that you want to dive deeper into Wechaty, fork & clone to run Wechaty bot on your machine, and start hacking.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
103

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
104
### 1. Install Node.js
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
105 106 107
Node.js Version 6.0 or above is required.

1. Visit [Node.js](https://nodejs.org)
108 109 110
1. Download NodeJS Installer(i.e. "v6.2.0 Current")
1. Run Installer to install NodeJS to your machine

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
111
### 2. Fork & Clone Wechaty
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
112 113

If you have no github account, you can just clone it via https:
114
```shell
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
115
git clone https://github.com/zixia/wechaty.git
116
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
117
This will clone wechaty source code to your current directory.
118

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
119
### 3. Run Demo Bot
120
```shell
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
121 122
cd wechaty
npm install
123
node example/ding-dong-bot.js
124 125
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
126 127
After a little while, bot will show you a message of a url for Login QrCode. You need to scan this qrcode in your wechat in order to permit your bot login.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
128
### 4. Done
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
129 130 131 132

Enjoy hacking Wechaty!
Please submit your issue if you have any, and a fork & pull is very welcome for showing your idea.

133 134 135 136 137 138
# Trouble Shooting
If wechaty is not run as expected, run unit test maybe help to find some useful message.
```shell
npm test
```

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
139 140
# Requirement

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
141
ECMAScript2015(ES6). I develop and test wechaty with Node.js v6.0.
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
142

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
143
# API Refference
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
144

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
145
I'll try my best to keep the api as sample as it can be.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
146

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
147 148
## Events

149 150 151 152 153 154 155 156
Wechaty support the following 5 events:

1. scan
2. login
3. logout
4. message
5. error

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
157 158 159
### 1. Event: `scan`

A `scan` event will be emitted when the bot need to show you a QrCode for scaning.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
160 161

```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
162 163 164
bot.on('scan', ({code, url}) => {
  console.log(`[${code}] Scan ${url} to login.` )
})
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
165 166
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
167 168 169
1. url: {String} the qrcode image url
2. code: {Number} the scan status code. some known status of the code list here is:
    1. 0    initial
170 171 172
    1. 200  login confirmed
    1. 201  scaned, wait for confirm
    1. 408  wait for scan
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
173

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
174
`scan` event will be emit when it will detect a new code status change.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
175

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
176 177 178
### 2. Event: `login`

After the bot login full successful, the event `login` will be emitted, with a [Contact](#class-contact) of current logined user.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
179
```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
180 181
bot.on('login', user => {
  console.log(`user ${user} logined`)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
182 183
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
184 185 186 187
### 3. Event: `logout`
`logout` will be emitted when bot detected it is logout.

### 4. Event: `message`
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
188 189
Emit when there's a new message.
```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
190 191 192
bot.on('message', message => {
  console.log('message ${message} received')
})
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
193
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
194
The `message` here is a [Message](#class-message).
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
195

196 197 198
### 5. Event: `error`
To be support.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
199 200
## Class Wechaty
Main bot class.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
201

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
202 203 204
```javascript
const bot = new Wechaty()
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
205

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
206 207
### Wechaty.init()
Initialize the bot, return Promise.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
208
```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
209
bot.init()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
210
.then(() => {
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
211 212
  // do other staff with bot here
}
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
213
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
214 215 216 217

## Class Message
All wechat messages will be encaped as a Message.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
218
### Message.get(prop)
219
Get prop from a message.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
220 221

Supported prop list:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
222

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
223 224 225 226
1. `id` :String
1. `from` :Contact
1. `to` :Contact
1. `content` :String
227
1. `room` :Room
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
1. `date` :Date

```javascript
message.get('content')
```

### Message.set(prop, value)
Set prop to value for a message.

Supported prop list: the same as `get(prop)`

```javascript
message.set('content', 'Hello, World!')
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
243 244
### Message.ready()
A message may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
245 246 247 248

Return a Promise, will be resolved when all data is ready.

```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
249
message.ready()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
250 251 252 253
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
254

255 256 257 258 259 260 261 262
### Message.reply()
Create a new Message instance that reply the original one. which means: the `to` field of the reply message is the `from` of origin message.

```javascript
const replyMessage = message.reply('roger!')
bot.send(replyMessage)
```

263 264 265 266 267 268 269 270 271 272 273
### Message.self()
Check if message is send by self.

Return `true` for send from self, `false` for send from others.

```javascript
if (m.self()) {
  console.log('this message is sent by myself!')
}
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
274 275
## Class Contact

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
276
### Contact.get(prop)
277
Get prop from a contact.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
278 279

Supported prop list:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
280

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
281 282 283 284 285 286 287 288 289 290 291 292 293
1. `id` :String
1. `weixin` :String
1. `name` :String
1. `remark` :String
1. `sex` :Number
1. `province` :String
1. `city` :String
1. `signature` :String

```javascript
contact.get('name')
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
294 295
### Contact.ready()
A Contact may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
296 297 298 299

Return a Promise, will be resolved when all data is ready.

```javascript
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
300
contact.ready()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
301 302 303 304 305
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```

306
## Class Room
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
307 308


309 310
### Room.get(prop)
Get prop from a room.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
311 312

Supported prop list:
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
313

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
314 315 316 317 318 319 320
1. `id` :String
1. `name` :String
1. `members` :Array
    1. `contact` :Contact
    1. `name` :String

```javascript
321
room.get('members').length
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
322
```
323 324
### Room.ready()
A room may be not fully initialized yet. Call `ready()` to confirm we get all the data needed.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
325 326 327 328

Return a Promise, will be resolved when all data is ready.

```javascript
329
room.ready()
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
330 331 332 333
.then(() => {
  // Here we can be sure all the data is ready for use.
})
```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
334 335

# Test
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
336
Wechaty use [TAP protocol](http://testanything.org/) to test itself by [tap](http://www.node-tap.org/).
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
337

Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
338
To test Wechaty, run:
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
339 340
```shell
npm test
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
341 342
```

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
343
Know more about TAP: [Why I use Tape Instead of Mocha & So Should You](https://medium.com/javascript-scene/why-i-use-tape-instead-of-mocha-so-should-you-6aa105d8eaf4#.qxrrf2938)
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
344

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
345 346
# Version History

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
347
## v0.0.10 (2016/5/28)
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
348
1. use event `scan` to show login qrcode image url(and detect state change)
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
349
2. new examples: Tuling123 bot & api.AI bot
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
350
3. more unit tests
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
351
4. code coverage status
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
352

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
353
## v0.0.5 (2016/5/11)
354
1. Receive & send message
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
355
1. Show contacts info
356
1. Show rooms info
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
357
1. 1st usable version
358
1. Start coding from May 1st 2016
Huan (李卓桓)'s avatar
readme  
Huan (李卓桓) 已提交
359

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
360
# Todo List
361

Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
362
- [ ] Contact
363 364 365
    - [ ] Accept a friend request
    - [ ] Send a friend request
    - [ ] Delete a contact
366 367 368 369
- [ ] Chat Room
    - [ ] Create a new chat room
    - [ ] Invite people to join a existing chat room
    - [ ] Rename a Chat Room
Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
370
- [ ] Events
371 372 373 374 375 376 377 378 379
    - [ ] Use EventEmitter2 to emit message events, so we can use wildcard
        1. `message`
        2. `message.recv`
        3. `message.sent`
        4. `message.recv.image`
        5. `message.sent.image`
        6. `message.recv.sys`
        1. `message.**.image`
        1. `message.recv.*`
Huan (李卓桓)'s avatar
todo  
Huan (李卓桓) 已提交
380
- [ ] Message
381
    - [ ] Send/Reply image message
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
382
- [ ] Session save/load
383

Huan (李卓桓)'s avatar
readme  
Huan (李卓桓) 已提交
384
Everybody is welcome to issue your needs.
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
385 386 387 388 389 390 391 392 393

# Known Issues & Support
Github Issue - https://github.com/zixia/wechaty/issues

# Contributing
* Lint: eslint
    ```bash
    $ npm lint
    ```
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
394
* Create an issue, fork, then send a pull request(with unit test please).
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
395

396
# See Also
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
397

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
398 399 400
## Other Library

### Javascript
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
401 402
1. [Weixinbot](https://github.com/feit/Weixinbot) Nodejs 封装网页版微信的接口,可编程控制微信消息

403
### Perl
Huan (李卓桓)'s avatar
typo  
Huan (李卓桓) 已提交
404
1. [MojoWeixin](https://github.com/sjdy521/Mojo-Weixin) 使用Perl语言编写的微信客户端框架,基于Mojolicious,要求Perl版本5.10+,可通过插件提供基于HTTP协议的api接口供其他语言或系统调用
405

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
406
### Python
Huan (李卓桓)'s avatar
doc  
Huan (李卓桓) 已提交
407 408 409
1. [WeixinBot](https://github.com/Urinx/WeixinBot) *Very well documented* 网页版微信API,包含终端版微信及微信机器人
1. [wxBot](https://github.com/liuwons/wxBot): Wechat Bot API
1. [ItChat](https://github.com/littlecodersh/ItChat): 微信个人号接口(支持文件、图片上下载)、微信机器人及命令行微信。三十行即可自定义个人号机器人
410

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
411
## Chat Script
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
412 413 414 415
1. [SuperScript](http://superscriptjs.com/) A dialog system and bot engine for conversational UI's. (Pure Javascript)
2. [RiveScript](https://www.rivescript.com/) A simple scripting language for giving intelligence to chatbots and other conversational entities. (Perl original, Multi-Language support)

## Application
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
416 417
1. [助手管家](http://72c.me/a/m/yhmhrh) It's a Official Account of wechat, which can manage your personal wechat account as a robot assistant.

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
418
## Service
Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
419 420 421 422 423 424 425 426 427
1. [Luis.ai](https://www.luis.ai) Language Understanding Intelligent Service (LUIS) offers a fast and effective way of adding language understanding to applications from Microsoft
1. [API.ai](https://api.ai) Build conversational user interfaces
1. [Wit.ai](https://wit.ai) Turn user input into action from Facebook
1. [Watson](http://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/doc/dialog/) a comprehensive, robust, platform for managing conversations between virtual agents and users through an application programming interface (API) from IBM

* [Advanced Natural Language Processing Tools for Bot Makers](https://stanfy.com/blog/advanced-natural-language-processing-tools-for-bot-makers/) a good article of comparing the above services.

## Framework
1. [Bot Framework](https://dev.botframework.com/) Build and connect intelligent bots to interact with your users naturally wherever they are, from text/sms to Skype, Slack, Office 365 mail and other popular services. from Microsoft
428

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
429 430 431 432 433 434 435 436 437 438 439 440 441
Author
-----------------
Zhuohuan LI <zixia@zixia.net> (http://linkedin.com/in/zixia)

<a href="http://stackoverflow.com/users/1123955/zixia">
<img src="http://stackoverflow.com/users/flair/1123955.png" width="208" height="58" alt="profile for zixia at Stack Overflow, Q&amp;A for professional and enthusiast programmers" title="profile for zixia at Stack Overflow, Q&amp;A for professional and enthusiast programmers">
</a>

Copyright & License
-------------------
* Code & Docs 2016© zixia
* Code released under the ISC license
* Docs released under Creative Commons
442

Huan (李卓桓)'s avatar
Huan (李卓桓) 已提交
443
[downloads-image]: http://img.shields.io/npm/dm/wechaty.svg?style=flat-square
444
[downloads-url]: https://npmjs.org/package/wechaty