python wechaty getting started
1.0.0
開箱即用的 Python Wechaty Starter 專案模板
Wechaty是一款針對微信個人帳戶的RPA SDK,可以幫助您用9行Python創建一個聊天機器人。
這是來自我們的 Python Wechaty 創建者 @wj-Mcat 的精彩即時編碼視訊教學:https://wechaty.js.org/2020/10/26/python-wechaty-live-coding/
克隆 python-wechaty-getting-started 儲存庫
git clone https://github.com/wechaty/python-wechaty-getting-started
cd python-wechaty-getting-started
安裝依賴項
make install
# or
pip install -r requirements.txt
為您的機器人設定令牌
您首先需要一個 Wechaty Puppet 服務令牌,您可以從我們的官方文件 https://wechaty.js.org/docs/puppet-services/ 中了解如何取得它。
```sh
# examples/ding-dong-bot.py : func-> main()
# it must be donut token
export WECHATY_PUPPET=wechaty-puppet-service
export WECHATY_PUPPET_SERVICE_TOKEN=your_token_at_here
```
or you can use `TOKEN` or `token` environment variable alias name to set **token**, for example:
```shell
export TOKEN=your_token_at_here
# or
export token=your_token_at_here
```
透過閱讀我們的部落格文章以了解有關代幣相關概念的更多資訊:微信傀儡服務簡介(提供者),@huan,2021 年 1 月 14 日
運行機器人
make bot
# or
python examples/ding-dong-bot.py
from wechaty import Wechaty
import asyncio
async def main ():
bot = Wechaty ()
bot . on ( 'scan' , lambda status , qrcode , data : print ( 'Scan QR Code to login: {} n https://wechaty.wechaty.js/qrcode/{}' . format ( status , qrcode )))
bot . on ( 'login' , lambda user : print ( 'User {} logged in' . format ( user )))
bot . on ( 'message' , lambda message : print ( 'Message: {}' . format ( message )))
await bot . start ()
asyncio . run ( main ())
[ ![ Wechaty in Python ] ( https://img.shields.io/badge/Wechaty-Python-blue )] ( https://github.com/wechaty/python-wechaty )
@wechaty/python