Initial commit - Navi.FM v3

This commit is contained in:
Collin Kasbergen
2026-07-22 13:23:22 +02:00
commit badafc91e3
55 changed files with 6384 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import socket
with socket.create_connection(("127.0.0.1", 1234), timeout=1) as sock:
sock.sendall(b"help\r\nquit\r\n")
response = b""
while True:
chunk = sock.recv(4096)
if not chunk: break
response += chunk
print(response.decode())