Send a JSON request to the socket
(sock: socket.socket, request: dict)
| 71 | |
| 72 | |
| 73 | def send_request(sock: socket.socket, request: dict) -> bool: |
| 74 | """Send a JSON request to the socket""" |
| 75 | try: |
| 76 | data = json.dumps(request) + "\n" |
| 77 | sock.send(data.encode()) |
| 78 | return True |
| 79 | except: |
| 80 | return False |
| 81 | |
| 82 | |
| 83 | def read_events(sock: socket.socket) -> list: |