Added SFTP client

resolved_file
Chris Truncer 2015-01-03 20:51:34 -05:00
parent 41bfddeb9c
commit 64e90c8b41
2 changed files with 15 additions and 1 deletions

View File

@ -9,6 +9,7 @@ import os
import random
import string
import sys
import time
def cli_parser():
@ -114,3 +115,17 @@ def title_screen():
def ea_path():
return os.getcwd()
def writeout_text_data(incoming_data):
# Get the date info
current_date = time.strftime("%m/%d/%Y")
current_time = time.strftime("%H:%M:%S")
file_name = current_date.replace("/", "") +\
"_" + current_time.replace(":", "") + "text_data.txt"
# Write out the file
with open(ea_path() + "/" + file_name, 'w') as out_file:
out_file.write(incoming_data)
return file_name

View File

@ -1,7 +1,6 @@
import base64
import os
import paramiko
import socket
import tempfile
import threading
import time