You can use this simple Python script to read ACD data and store it to a file (it also outputs the ACD data on the console):
import socket
host = "172.20.20.45"
port = 15373
with open("acd.bin", "wb") as f:
print("Connecting to %s:%d..." % (host, port))
s = socket.socket()
s.connect((host,port))
print("Connected")
while True:
log = s.recv(1024)
f.write(log)
print(log)
s.close()
Example output:
Connecting to 172.20.20.45:15373...
Connected
b'\x0249R16150920190822\x03\r\n'
b'\x0250R16151120190822\x03\r\n'
b'\x0251R16151320190822\x03\r\n'
b'\x0252R16151520190822\x03\r\n'
b'\x0253R16151720190822\x03\r\n'
b'\x0254R16151920190822\x03\r\n'
b'\x0255R16152120190822\x03\r\n'
b'\x0256R16152320190822\x03\r\n'
b'\x0257R16152520190822\x03\r\n'
b'\x0258R16152720190822\x03\r\n'