reduce indentation (#741)

This commit is contained in:
louisparis 2019-03-27 19:46:46 +02:00 committed by John Law
parent d27968b78d
commit 8b8a6d881c

View File

@ -1,11 +1,11 @@
""" """
File transfer protocol used to send and receive files using FTP server. File transfer protocol used to send and receive files using FTP server.
Use credentials to provide access to the FTP client Use credentials to provide access to the FTP client
Note: Do not use root username & password for security reasons Note: Do not use root username & password for security reasons
Create a seperate user and provide access to a home directory of the user Create a seperate user and provide access to a home directory of the user
Use login id and password of the user created Use login id and password of the user created
cwd here stands for current working directory cwd here stands for current working directory
""" """
from ftplib import FTP from ftplib import FTP
@ -14,8 +14,8 @@ ftp.login(user='username', passwd='password')
ftp.cwd('/Enter the directory here/') ftp.cwd('/Enter the directory here/')
""" """
The file which will be received via the FTP server The file which will be received via the FTP server
Enter the location of the file where the file is received Enter the location of the file where the file is received
""" """
def ReceiveFile(): def ReceiveFile():
@ -25,8 +25,8 @@ def ReceiveFile():
ftp.quit() ftp.quit()
""" """
The file which will be sent via the FTP server The file which will be sent via the FTP server
The file send will be send to the current working directory The file send will be send to the current working directory
""" """
def SendFile(): def SendFile():