Skip to content

Instantly share code, notes, and snippets.

View artikrh's full-sized avatar

Arti Karahoda artikrh

View GitHub Profile
@artikrh
artikrh / ftpserver.py
Created December 21, 2018 13:14 — forked from ZoeS17/ftpserver.py
simple ftp server by python
#!/usr/bin/env python3
# coding: utf-8
import os,socket,threading,time
allow_delete = False
local_ip = socket.gethostbyname(socket.gethostname())
local_port = 21
currdir=os.path.abspath('.')
class FTPserverThread(threading.Thread):