This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TOKEN = "oauth:<TOKEN>" | |
| import socket | |
| import time | |
| import dataclasses | |
| @dataclasses.dataclass(frozen=True) | |
| class Message: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import typing | |
| import dataclasses | |
| import os | |
| import binascii | |
| import uuid | |
| import enum | |
| import datetime | |
| class BlockDevice: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import asyncio | |
| import time | |
| import mido | |
| import pynput.keyboard | |
| KEY_STEPS = [ | |
| (0, pynput.keyboard.KeyCode.from_char('z')), | |
| (2, pynput.keyboard.KeyCode.from_char('x')), | |
| (4, pynput.keyboard.KeyCode.from_char('c')), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import os | |
| from time import sleep | |
| import pyshiki | |
| from pprint import pprint | |
| api = pyshiki.Api("<Логин>", "<Пароль>") | |