From d97b34d01c60ded20f79f968a7fa8f2f866a1a89 Mon Sep 17 00:00:00 2001 From: DeepakNautiyal987 Date: Mon, 13 Nov 2017 00:49:28 +0530 Subject: [PATCH 1/2] Send & receive files via ftp --- File_Transfer_Protocol/ftp_send_receive.py | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 File_Transfer_Protocol/ftp_send_receive.py diff --git a/File_Transfer_Protocol/ftp_send_receive.py b/File_Transfer_Protocol/ftp_send_receive.py new file mode 100644 index 000000000..caafc0c4d --- /dev/null +++ b/File_Transfer_Protocol/ftp_send_receive.py @@ -0,0 +1,36 @@ +""" + File transfer protocol used to send and receive files using FTP server. + Use credentials to provide access to the FTP client + + Note: Do not use root username & password for security reasons + Create a seperate user and provide access to a home directory of the user + Use login id and password of the user created + cwd here stands for current working directory +""" + +from ftplib import FTP +ftp = FTP('xxx.xxx.x.x') """ Enter the ip address or the domain name here """ +ftp.login(user='username', passwd='password') +ftp.cwd('/Enter the directory here/') + +""" + The file which will be received via the FTP server + Enter the location of the file where the file is received +""" + +def ReceiveFile(): + FileName = 'example.txt' """ Enter the location of the file """ + LocalFile = open(FileName, 'wb') + ftp.retrbinary('RETR ' + filename, LocalFile.write, 1024) + ftp.quit() + LocalFile.close() + +""" + The file which will be sent via the FTP server + The file send will be send to the current working directory +""" + +def SendFile(): + FileName = 'example.txt' """ Enter the name of the file """ + ftp.storbinary('STOR ' + FileName, open(FileName, 'rb')) + ftp.quit() \ No newline at end of file From c522ddae841c9d125d86a85019ccbdcae1cd9a05 Mon Sep 17 00:00:00 2001 From: Deepak Nautiyal <30626234+DeepakNautiyal987@users.noreply.github.com> Date: Mon, 13 Nov 2017 00:58:37 +0530 Subject: [PATCH 2/2] Update ftp_send_receive.py --- File_Transfer_Protocol/ftp_send_receive.py | 34 +++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/File_Transfer_Protocol/ftp_send_receive.py b/File_Transfer_Protocol/ftp_send_receive.py index caafc0c4d..ba1280048 100644 --- a/File_Transfer_Protocol/ftp_send_receive.py +++ b/File_Transfer_Protocol/ftp_send_receive.py @@ -1,22 +1,22 @@ -""" - File transfer protocol used to send and receive files using FTP server. - Use credentials to provide access to the FTP client + """ + File transfer protocol used to send and receive files using FTP server. + Use credentials to provide access to the FTP client - Note: Do not use root username & password for security reasons - Create a seperate user and provide access to a home directory of the user - Use login id and password of the user created - cwd here stands for current working directory -""" + Note: Do not use root username & password for security reasons + Create a seperate user and provide access to a home directory of the user + Use login id and password of the user created + cwd here stands for current working directory + """ from ftplib import FTP ftp = FTP('xxx.xxx.x.x') """ Enter the ip address or the domain name here """ ftp.login(user='username', passwd='password') ftp.cwd('/Enter the directory here/') -""" - The file which will be received via the FTP server - Enter the location of the file where the file is received -""" + """ + The file which will be received via the FTP server + Enter the location of the file where the file is received + """ def ReceiveFile(): FileName = 'example.txt' """ Enter the location of the file """ @@ -25,12 +25,12 @@ def ReceiveFile(): ftp.quit() LocalFile.close() -""" - The file which will be sent via the FTP server - The file send will be send to the current working directory -""" + """ + The file which will be sent via the FTP server + The file send will be send to the current working directory + """ def SendFile(): FileName = 'example.txt' """ Enter the name of the file """ ftp.storbinary('STOR ' + FileName, open(FileName, 'rb')) - ftp.quit() \ No newline at end of file + ftp.quit()