Skip to content
Snippets Groups Projects
Commit cea3f321 authored by Arthur Le Bars's avatar Arthur Le Bars
Browse files

Delete filetransfer.py

parent a3260db6
No related branches found
No related tags found
1 merge request!1Release 1.0
"""
SFTP class for downloading files from the server, useless in production
"""
import subprocess
# TODO: with pysftp
class FileTransfer:
def connect(self, user, host, password):
user_host = [user, host]
subprocess.Popen(user_host)
def file(self):
return 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment