PDBd/main.py

8 lines
163 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)
2019-06-01 20:40:41 +02:00
s.connect("../bot-base.sock")
2019-05-13 04:07:36 +02:00
while True:
s.send(input(">>> ").encode('utf-8'))
s.close()