PDBd/main.py

8 lines
160 B
Python
Raw Normal View History

2019-05-13 04:07:36 +02:00
import socket
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
s.connect("/tmp/bot.sock")
while True:
s.send(input(">>> ").encode('utf-8'))
s.close()