Skip to content

Instantly share code, notes, and snippets.

@kanazux
Created May 29, 2018 18:52
Show Gist options
  • Save kanazux/72f59c136831c1c6473c069dd00184f3 to your computer and use it in GitHub Desktop.
Save kanazux/72f59c136831c1c6473c069dd00184f3 to your computer and use it in GitHub Desktop.
import socket
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client.connect(('127.0.0.1', 36547))
client.send('teste'.encode())
5
from subprocess import check_output
check_output(['ls /home/kanazuchi/projetos/sockets'], shell=True)
b'classifiers250418.tgz\nclient.py\nfgconsole\nfotografia.data\nnew\nnn.tgz\npythonclub\nserver.py\nUntitled1.ipynb\nUntitled.ipynb\n'
f = open('/home/kanazuchi/projetos/sockets/classifiers250418.tgz', 'rb').read()
tamanho_f = len(f)
tamanho_f = str(tamanho_f)
print(tamanho_f)
1212149
client.send(tamanho_f.encode())
7
client.send(f)
1212149
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment