Init commit, lots of stuff already made, and need to clean up

This commit is contained in:
2016-11-22 12:02:05 +01:00
parent fad4d2f7e2
commit d52c89b6e0
11 changed files with 755 additions and 0 deletions

14
plexLoop.py Normal file
View File

@@ -0,0 +1,14 @@
from socket import *
from time import sleep
host = '10.0.0.41'
port = 12000
clientSocket = socket(AF_INET, SOCK_DGRAM)
clientSocket.sendto('plex', (host, port))
message, address = clientSocket.recvfrom(1024)
print message
clientSocket.close()