Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2023-04-24 20:56:30
Size: 1314
Comment:
Revision 4 as of 2023-06-15 20:58:30
Size: 1781
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
'''`ftplib`''' is a client module for FTP servers. The '''`ftplib`''' module is an [[Protocols/FTP|FTP]] client.
Line 11: Line 11:
== Usage == == Classes ==
Line 209: Line 209:
== Exceptions ==



=== All_Errors ===

A tuple of the following exceptions.

----



=== Error_Reply ===

Raised when an unexpected reply is received.

----



=== Error_Temp ===

Raised when a temporary error (400-499) is received.

----



=== Error_Perm ===

Raised when a permanent error (500-599) is received.

----



=== Error_Proto ===

Raised when an improperly-formatted reply is received.

----


Python FtpLib

The ftplib module is an FTP client.


Classes

Ftp

Abort


Close


Connect


Cwd


Delete


Dir


GetWelcome


Login


Mkd


Mlsd


Nlst


NTransferCmd


Pwd


Quit


Rename


RetrBinary


RetrLines


Rmd


SendCmd


Set_DebugLevel


Set_Pasv


Size


StorBinary


StorLines


TransferCmd


VoidCmd


Ftp_Tls

Auth


Ccc


Prot_P


Prot_C


Ssl_Version


Exceptions

All_Errors

A tuple of the following exceptions.


Error_Reply

Raised when an unexpected reply is received.


Error_Temp

Raised when a temporary error (400-499) is received.


Error_Perm

Raised when a permanent error (500-599) is received.


Error_Proto

Raised when an improperly-formatted reply is received.


See also

Python ftplib module documentation


CategoryRicottone

Python/FtpLib (last edited 2023-10-11 20:13:45 by DominicRicottone)