dev-notes/docs/languages/python/modules/ftplib.md

71 lines
2.3 KiB
Markdown
Raw Normal View History

2021-09-20 19:35:32 +02:00
# Ftplib Module
2021-01-31 11:05:37 +01:00
## FTP CLASSES
```py
ftplib.FTP(host="", user="", password="", acct="")
2021-09-20 19:35:32 +02:00
# if HOST => connect(host)
# if USER => login(user, password, acct)
2021-01-31 11:05:37 +01:00
ftplib.FTP_TLS(host="", user="", password="", acct="")
```
## EXCEPTIONS
```py
ftplib.error_reply # unexpected error from server
ftplib.error_temp # temporary error (response codes 400-499)
ftplib.error_perm # permanent error (response codes 500-599)
2021-09-20 19:35:32 +02:00
ftplib.error_proto # error not in ftp specs
2021-01-31 11:05:37 +01:00
ftplib.all_errors # tuple of all exceptions
```
## FTP OBJECTS
```py
# method on text files: -lines
# method on binary files: -binary
# CONNECTION
2021-09-20 19:35:32 +02:00
FTP.connect(host="", port=0) # used once per instance
# DON'T CALL if host was supplied at instance creation
2021-01-31 11:05:37 +01:00
FTP.getwelcome() # return welcome message
FTP.login(user='anonymous', password='', acct='')
2021-09-20 19:35:32 +02:00
# called once per instance after connection is established
# DEFAULT PASSWORD: anonymous@
# DON'T CALL if host was supplied at instance creation
2021-01-31 11:05:37 +01:00
FTP.sendcmd(cmd) # send command string and return response
FTP.voidcmd(cmd) # send command string and return nothing if successful
# FILE TRANSFER
FTP.abort() # abort in progress file transfer (can fail)
FTTP.transfercmd(cmd, rest=None) # returns socket for connection
2021-09-20 19:35:32 +02:00
# CMD active mode: send EPRT or PORT command and CMD and accept connection
2021-01-31 11:05:37 +01:00
# CMD passive mode: send EPSV or PASV and start transfer command
FTP.retrbinary(cmd, callback, blocksize=8192, rest=None) # retrieve file in binary mode
2021-09-20 19:35:32 +02:00
# CMD: appropriate RETR command ('RETR filename')
2021-01-31 11:05:37 +01:00
# CALLBACK: func called on every block of data received
FTP.rertlines(cmd, callback=None)
# retrieve file or dir list in ASCII transfer mode
2021-09-20 19:35:32 +02:00
# CMD: appropriate RETR, LSIT (list and info of files), NLST (list of file names)
2021-01-31 11:05:37 +01:00
# DEFAULT CALLBACK: sys.stdout
FTP.set_pasv(value) # set passive mode if value is true, otherwise disable it
2021-09-20 19:35:32 +02:00
# passive mode on by default
2021-01-31 11:05:37 +01:00
FTP.storbinary(cmd, fp, blocksize=8192, callback=None, rest=None) # store file in binary mode
# CMD: appropriate STOR command ('STOR filename')
# FP: {file object in binary mode} read until EOF in blocks of blocksize
2021-09-20 19:35:32 +02:00
# CALLBACK: func called on each block after sending
2021-01-31 11:05:37 +01:00
FTP.storlines(cmd, fp, callback=None) # store file in ASCII transfer mode
# CMD: appropriate STOR command ('STOR filename')
# FP: {file object} read until EOF
2021-09-20 19:35:32 +02:00
# CALLBACK: func called on each block after sending
2021-01-31 11:05:37 +01:00
```