Skip to content

Instantly share code, notes, and snippets.

View abyand's full-sized avatar

Abyan Dafa abyand

View GitHub Profile
@abyand
abyand / client.py
Created October 16, 2017 09:07
FTP protocol
import socket
import json
import sys
from math import ceil
import os
import threading
import Queue
server_address = ('127.0.0.1', 5000)
client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)