Skip to content

Commit

Permalink
reduce indentation (TheAlgorithms#741)
Browse files Browse the repository at this point in the history
  • Loading branch information
louisparis authored and poyea committed Mar 27, 2019
1 parent d27968b commit 8b8a6d8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions file_transfer_protocol/ftp_send_receive.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
"""
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
Expand All @@ -14,8 +14,8 @@
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():
Expand All @@ -25,8 +25,8 @@ def ReceiveFile():
ftp.quit()

"""
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():
Expand Down

0 comments on commit 8b8a6d8

Please sign in to comment.