Plantilla de proyecto inicial de Python Wechaty que funciona de inmediato
Wechaty es un SDK de RPA para cuentas individuales de Wechat que puede ayudarle a crear un chatbot en 9 líneas de Python.
Aquí hay un excelente video tutorial de codificación en vivo de nuestro creador de Python Wechaty @wj-Mcat: https://wechaty.js.org/2020/10/26/python-wechaty-live-coding/
Clonar el repositorio de introducción a python-wechaty
git clone https://github.com/wechaty/python-wechaty-getting-started
cd python-wechaty-getting-started
Instalar dependencias
make install
# or
pip install -r requirements.txt
Establece un token para tu bot
Primero necesita un token de servicio Wechaty Puppet; puede aprender cómo obtenerlo en nuestros documentos oficiales en 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
```
Obtenga más información sobre los conceptos relacionados con los tokens leyendo nuestra publicación de blog: Presentación del servicio Wechaty Puppet (proveedores), @huan, 14 de enero de 2021
Ejecute el robot
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