Max

Results 2 comments of Max

``` from qrcode import QRCode from base64 import urlsafe_b64encode as base64url def gen_qr(token: str): qr.clear() qr.add_data(token) qr.print_ascii() def display_url_as_qr(url): os.system("cls") send_info_log("Generated new QR Code...") gen_qr(url) ... qr_login = await client.qr_login()...

> You should not run the same session on two different IPs at the same time. I authorize session and then quit it instantly after checking if it's valid, so...