Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Wechaty is used in many ChatBot projects by thousands of developers. If you want

Scan now, because other Wechaty Python developers want to talk with you too! (secret code: _python wechaty_)


## The World's Shortest Python ChatBot: 9 lines of Code

```python
Expand All @@ -55,6 +56,7 @@ async def main():
bot.on('login', lambda user: print('User {} logined'.format(user)))
bot.on('message', lambda message: print('Message: {}'.format(message)))
await bot.start()

asyncio.run(main())
```

Expand Down Expand Up @@ -306,6 +308,10 @@ Project created, publish a empty module `wechaty` on PyPI.
- [@wj-Mcat](https://github.com/wj-Mcat) - Jingjing WU (吴京京)
- [@huan](https://github.com/huan) - ([李卓桓](http://linkedin.com/in/zixia)) zixia@zixia.net

## Contributors

1. [@huangaszaq](https://github.com/huangaszaq) - Chunhong HUANG (黄纯洪)

## Copyright & License

- Code & Docs © 2018 Wechaty Contributors <https://github.com/wechaty>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.1
2 changes: 1 addition & 1 deletion src/wechaty/user/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __init__(
:param image_id:
"""
super().__init__()
log.info('__init__(%d)', image_id)
log.info('init the message Image object <%s>', image_id)

self.image_id = image_id
if self.puppet is None:
Expand Down