blob: 305ef8371373a8d61c89135b49362524b1fa5c6d (
plain)
- #!/usr/bin/python3
- import socket
- import datetime
- host = 'localhost'
- port = 9999
- conn = socket.create_connection( (host, port) )
- fd = conn.makefile('rw')
- for line in fd:
- words = line.rstrip('\n').split(' ')
- signal = words[0]
- args = words[1:]
- if signal == 'message' and args[0] == 'cut':
- ts = datetime.datetime.now().strftime("%Y-%m-%d/%H_%M_%S")
- print(ts)
|