Modèle de projet Python Wechaty Starter qui fonctionne immédiatement
Wechaty est un SDK RPA pour compte individuel Wechat qui peut vous aider à créer un chatbot en 9 lignes de Python.
Voici un excellent didacticiel vidéo de codage en direct de notre créateur Python Wechaty @wj-Mcat : https://wechaty.js.org/2020/10/26/python-wechaty-live-coding/
Cloner le référentiel python-wechaty-getting-started
git clone https://github.com/wechaty/python-wechaty-getting-started
cd python-wechaty-getting-started
Installer les dépendances
make install
# or
pip install -r requirements.txt
Définir un jeton pour votre bot
Vous avez d'abord besoin d'un jeton de service Wechaty Puppet, vous pouvez apprendre comment l'obtenir à partir de nos documents officiels sur 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
```
Apprenez-en davantage sur les concepts liés aux jetons en lisant notre article de blog : Présentation du service Wechaty Puppet (fournisseurs), @huan, 14 janvier 2021.
Exécutez le bot
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