python wechaty getting started
1.0.0
すぐに使える Python Wechaty スターター プロジェクト テンプレート
Wechaty は、9 行の Python でチャットボットを作成できる Wechat個人アカウント用の RPA SDK です。
これは、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
```
トークン関連の概念について詳しくは、ブログ投稿「Wechaty Puppet Service (プロバイダー) の紹介」、@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