krypton-byte / neonize

whatsapp automation library, written in python
http://krypton-byte.me/neonize/
Apache License 2.0
55 stars 15 forks source link

Is there a function to redeem the QR Code ? #24

Closed fxsobr closed 4 months ago

fxsobr commented 4 months ago

Hello, I would like to know if there is any way for me to redeem the QR Code that is displayed in the terminal. Thanks

krypton-byte commented 4 months ago
from neonize import NewClient

....

@client.event.qr
def on_qr(client: NewClient, qr_data: bytes):
    print(qr_data)
fxsobr commented 4 months ago

Thank you