MINI MINI MANI MO

Path : /usr/lib64/python3.6/__pycache__/
File Upload :
Current File : //usr/lib64/python3.6/__pycache__/ftplib.cpython-36.opt-1.pyc

3


 \@sVdZddlZddlZddlmZdddddd	gZd
ZdZdZGd
ddeZ	Gddde	Z
Gddde	ZGddde	ZGddde	Z
e	eefZdZdZGdddZyddlZWnek
rdZYn0XejZGdddeZejde	eeejfZdaddZdaddZddZddZ d d!Z!d)d$d%Z"d&d'Z#e$d(krRe#dS)*aSAn FTP client class and some helper functions.

Based on RFC 959: File Transfer Protocol (FTP), by J. Postel and J. Reynolds

Example:

>>> from ftplib import FTP
>>> ftp = FTP('ftp.python.org') # connect to host, default port
>>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
'230 Guest login ok, access restrictions apply.'
>>> ftp.retrlines('LIST') # list directory contents
total 9
drwxr-xr-x   8 root     wheel        1024 Jan  3  1994 .
drwxr-xr-x   8 root     wheel        1024 Jan  3  1994 ..
drwxr-xr-x   2 root     wheel        1024 Jan  3  1994 bin
drwxr-xr-x   2 root     wheel        1024 Jan  3  1994 etc
d-wxrwxr-x   2 ftp      wheel        1024 Sep  5 13:43 incoming
drwxr-xr-x   2 root     wheel        1024 Nov 17  1993 lib
drwxr-xr-x   6 1094     wheel        1024 Sep 13 19:07 pub
drwxr-xr-x   3 root     wheel        1024 Jan  3  1994 usr
-rw-r--r--   1 root     root          312 Aug  1  1994 welcome.msg
'226 Transfer complete.'
>>> ftp.quit()
'221 Goodbye.'
>>>

A nice test that reveals some of the network dialogue would be:
python ftplib.py -d localhost -l -p -l
N)_GLOBAL_DEFAULT_TIMEOUTFTPerror_reply
error_temp
error_permerror_proto
all_errorsi c@seZdZdS)ErrorN)__name__
__module____qualname__rr/usr/lib64/python3.6/ftplib.pyr9src@seZdZdS)rN)rr
rrrrrr:sc@seZdZdS)rN)rr
rrrrrr;sc@seZdZdS)rN)rr
rrrrrr<sc@seZdZdS)rN)rr
rrrrrr=sz
s
c@seZdZdZdZdZeZeZ	dZ
dZdZdZ
dZddddedfddZd	d
ZddZd\ddZddZddZeZddZddZddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Z d(d)Z!d*d+Z"d,d-Z#d.d/Z$d0d1Z%d]d2d3Z&d^d4d5Z'd_d6d7Z(d`d9d:Z)dad;d<Z*dbd=d>Z+dcd?d@Z,dAdBZ-dCdDZ.dEdFZ/dgfdGdHZ0dIdJZ1dKdLZ2dMdNZ3dOdPZ4dQdRZ5dSdTZ6dUdVZ7dWdXZ8dYdZZ9dS)drayAn FTP client class.

    To create a connection, call the class using these arguments:
            host, user, passwd, acct, timeout

    The first four arguments are all strings, and have default value ''.
    timeout must be numeric and defaults to None if not passed,
    meaning that no timeout will be set on any ftp socket(s)
    If a timeout is passed, then this is now the default timeout for all ftp
    socket operations for this instance.

    Then use self.connect() with optional host and port argument.

    To download a file, use ftp.retrlines('RETR ' + filename),
    or ftp.retrbinary() with slightly different arguments.
    To upload a file, use ftp.storlines() or ftp.storbinary(),
    which have an open file as argument (see their definitions
    below for details).
    The download/upload functions first issue appropriate TYPE
    and PORT or PASV commands.
    rNr	zlatin-1cCs0||_||_|r,|j||r,|j|||dS)N)source_addresstimeoutconnectlogin)selfhostuserpasswdacctrrrrr__init__ps
zFTP.__init__cCs|S)Nr)rrrr	__enter__ysz
FTP.__enter__cGsN|jdk	rJz*y|jWnttfk
r0YnXWd|jdk	rH|jXdS)N)sockquitOSErrorEOFErrorclose)rargsrrr__exit__}s


zFTP.__exit__icCs|dkr||_|dkr||_|dkr*||_|dk	r8||_tj|j|jf|j|jd|_|jj|_|jj	d|j
d|_|j|_
|j
S)	awConnect to host.  Arguments are:
         - host: hostname to connect to (string, default previous host)
         - port: port to connect to (integer, default previous port)
         - timeout: the timeout to set against the ftp socket(s)
         - source_address: a 2-tuple (host, port) for the socket to bind
           to as its source address before connecting.
        rriN)rr)encodingi)rportrrsocketcreate_connectionrZfamilyafmakefiler%filegetrespwelcome)rrr&rrrrrrs

zFTP.connectcCs|jrtd|j|j|jS)z`Get the welcome message from the server.
        (this is read and squirreled away by connect())z	*welcome*)	debuggingprintsanitizer-)rrrr
getwelcomeszFTP.getwelcomecCs
||_dS)zSet the debugging level.
        The required argument level means:
        0: no debugging output (default)
        1: print commands and responses but not body text etc.
        2: also print raw lines read and sent before stripping CR/LFN)r.)rlevelrrrset_debuglevelszFTP.set_debuglevelcCs
||_dS)zUse passive or active mode for data transfers.
        With a false argument, use the normal PORT mode,
        With a true argument, use the PASV command.N)
passiveserver)rvalrrrset_pasvszFTP.set_pasvcCsJ|dddkrBt|jd}|ddd|d||d}t|S)Npass PASS z
*>r9r8)lenrstriprepr)rsirrrr0s$zFTP.sanitizecCsRd|ksd|krtd|t}|jdkr:td|j||jj|j|jdS)N

z4an illegal newline character should not be containedr	z*put*)	
ValueErrorCRLFr.r/r0rsendallencoder%)rlinerrrputlines
zFTP.putlinecCs$|jrtd|j||j|dS)Nz*cmd*)r.r/r0rG)rrFrrrputcmdsz
FTP.putcmdcCs|jj|jd}t||jkr.td|j|jdkrHtd|j||sPt|ddt	krn|dd}n|ddt	kr|dd}|S)	Nr	zgot more than %d bytesz*get*rJrK)
r+readlinemaxliner;rr.r/r0r rC)rrFrrrgetlines
zFTP.getlinecCsd|j}|dddkr`|dd}x:|j}|d|}|dd|kr&|dddkr&Pq&W|S)N-rA)rN)rrFcodeZnextlinerrrgetmultilineszFTP.getmultilinecCsp|j}|jrtd|j||dd|_|dd}|d	krD|S|dkrTt||dkrdt|t|dS)
Nz*resp*rOr	12345>rUrTrV)rSr.r/r0Zlastresprrr)rrespcrrrr,szFTP.getrespcCs$|j}|dddkr t||S)z%Expect a response beginning with '2'.Nr	rU)r,r)rrYrrrvoidrespszFTP.voidrespcCsTdt}|jdkr"td|j||jj|t|j}|ddd	krPt||S)
zAbort a file transfer.  Uses out-of-band data.
        This does not follow the procedure from the RFC to send Telnet
        IP and Synch; that doesn't seem to work with the servers I've
        tried.  Instead, just send the ABOR command as OOB data.sABORr	z*put urgent*NrO426225226>r]r^r\)	B_CRLFr.r/r0rrDMSG_OOBrSr)rrFrYrrraborts
z	FTP.abortcCs|j||jS)z'Send a command and return the response.)rHr,)rcmdrrrsendcmds
zFTP.sendcmdcCs|j||jS)z8Send a command and expect a response beginning with '2'.)rHr[)rrbrrrvoidcmds
zFTP.voidcmdcCsB|jd}t|dt|dg}||}ddj|}|j|S)zUSend a PORT command with the current host and the given
        port number.
        .zPORT ,)splitr=joinrd)rrr&ZhbytesZpbytesbytesrbrrrsendports

zFTP.sendportcCsbd}|jtjkrd}|jtjkr$d}|dkr4tddt||t|dg}ddj|}|j|S)zESend an EPRT command with the current host and the given port number.rr	rIzunsupported address familyrzEPRT |)r)r'AF_INETZAF_INET6rr=rird)rrr&r)Zfieldsrbrrrsendeprt"szFTP.sendeprtc
Csd}d}xtjdd|jtjdtjD]j}|\}}}}}ytj|||}|j|Wn8tk
r}	z|	}|rt|jd}w$WYdd}	~	XnXPq$W|dkr|dk	r|ntd|jd|j	d}
|j
j	d}|jtjkr|j||
}n|j
||
}|jtk	r|j|j|S)z3Create a new socket and send a PORT command for it.Nrz!getaddrinfo returns an empty listr	)r'Zgetaddrinfor)ZSOCK_STREAMZ
AI_PASSIVEZbindrr!ZlistenZgetsocknamerrmrkrnrr
settimeout)
rerrrresr)ZsocktypeprotoZ	canonnameZsa_r&rrYrrrmakeport/s6 
zFTP.makeportcCsB|jtjkr t|jd\}}nt|jd|jj\}}||fS)NPASVZEPSV)r)r'rmparse227rcparse229rZgetpeername)rrr&rrrmakepasvOszFTP.makepasvc

Cs6d}|jr|j\}}tj||f|j|jd}yL|dk	rF|jd||j|}|ddkrd|j}|ddkrxt|Wn|j	YnXn|j
r}|dk	r|jd||j|}|ddkr|j}|ddkrt||j\}}	|jtk	r
|j
|jWdQRX|dddkr.t|}||fS)	aInitiate a transfer over the data connection.

        If the transfer is active, send a port command and the
        transfer command, and accept the connection.  If the server is
        passive, send a pasv command, connect to it, and start the
        transfer command.  Either way, return the socket for the
        connection and the expected size of the transfer.  The
        expected size may be None if it could not be determined.

        Optional `rest' argument can be a string that is sent as the
        argument to a REST command.  This is essentially a server
        marker used to tell the server to skip over any data up to the
        given marker.
        N)rzREST %srrUrTrO150)r4rxr'r(rrrcr,rr!rtZacceptrroparse150)
rrbrestsizerr&connrYrZsockaddrrrrntransfercmdVs<




zFTP.ntransfercmdcCs|j||dS)z0Like ntransfercmd() but returns only the socket.r)r~)rrbr{rrrtransfercmdszFTP.transfercmdcCs|sd}|sd}|sd}|dkr0|dkr0|d}|jd|}|ddkrX|jd|}|ddkrr|jd	|}|dd
krt||S)zLogin, default anonymous.Z	anonymousrrQz
anonymous@zUSER rrVzPASS zACCT rU>rrQ)rcr)rrrrrYrrrrs z	FTP.login c
Csb|jd|j||>}x|j|}|s*P||qWtdk	rPt|trP|jWdQRX|jS)aRetrieve data in binary mode.  A new port is created for you.

        Args:
          cmd: A RETR command.
          callback: A single parameter callable to be called on each
                    block of data read.
          blocksize: The maximum number of bytes to read from the
                     socket at one time.  [default: 8192]
          rest: Passed to transfercmd().  [default: None]

        Returns:
          The response code.
        zTYPE IN)rdrZrecv
_SSLSocket
isinstanceunwrapr[)rrbcallback	blocksizer{r}datarrr
retrbinarys

zFTP.retrbinarycCs|dkrt}|jd}|j|}|jd|jd}x|j|jd}t||jkrbtd|j|j	dkrzt
dt||sP|d
dtkr|dd}n|ddd	kr|dd
}||q6Wt
dk	rt|t
r|jWdQRXWdQRX|jS)ahRetrieve data in line mode.  A new port is created for you.

        Args:
          cmd: A RETR, LIST, or NLST command.
          callback: An optional single parameter callable that is called
                    for each line with the trailing CRLF stripped.
                    [default: print_line()]

        Returns:
          The response code.
        NzTYPE Ar$)r%r	zgot more than %d bytesrIz*retr*rArJrJrKrK)
print_linercrr*r%rLrMr;rr.r/r=rCrrrr[)rrbrrYr}fprFrrr	retrliness*

z
FTP.retrlinesc
Csp|jd|j||L}x*|j|}|s*P|j||r||qWtdk	r^t|tr^|jWdQRX|jS)a9Store a file in binary mode.  A new port is created for you.

        Args:
          cmd: A STOR command.
          fp: A file-like object with a read(num_bytes) method.
          blocksize: The maximum data size to read from fp and send over
                     the connection at once.  [default: 8192]
          callback: An optional single parameter callable that is called on
                    each block of data after it is sent.  [default: None]
          rest: Passed to transfercmd().  [default: None]

        Returns:
          The response code.
        zTYPE IN)rdrreadrDrrrr[)rrbrrrr{r}bufrrr
storbinarys


zFTP.storbinaryc
Cs|jd|j|}x||j|jd}t||jkrDtd|j|sJP|ddtkrz|dtkrr|dd}|t}|j||r||qWtdk	rt	|tr|j
WdQRX|jS)	ahStore a file in line mode.  A new port is created for you.

        Args:
          cmd: A STOR command.
          fp: A file-like object with a readline() method.
          callback: An optional single parameter callable that is called on
                    each line after it is sent.  [default: None]

        Returns:
          The response code.
        zTYPE Ar	zgot more than %d bytesrINrJrKrK)rdrrLrMr;rr_rDrrrr[)rrbrrr}rrrr	storliness$

z
FTP.storlinescCsd|}|j|S)zSend new account name.zACCT )rd)rZpasswordrbrrrr$szFTP.acctcGs4d}x|D]}|d|}q
Wg}|j||j|S)zBReturn a list of files in a given directory (default the current).ZNLST )rappend)rr"rbargfilesrrrnlst)s
zFTP.nlstcGsld}d}|ddr>t|dtdkr>|dd|d	}}x|D]}|rD|d|}qDW|j||dS)
aList a directory in long form.
        By default list current directory to stdout.
        Optional last argument is callback function; all
        non-empty arguments before it are concatenated to the
        LIST command.  (This *should* only be used for a pathname.)ZLISTNr	rrrKrKrKrK)typer)rr"rbfuncrrrrdir2s 
zFTP.dirc
cs|r|jddj|d|r*d|}nd}g}|j||jxh|D]`}|jtjd\}}}i}	x6|dd	jdD] }
|
jd\}}}||	|j<qxW||	fVqFWdS)
a<List a directory in a standardized format by using MLSD
        command (RFC-3659). If path is omitted the current directory
        is assumed. "facts" is a list of strings representing the type
        of information desired (e.g. ["type", "size", "perm"]).

        Return a generator object yielding a tuple of two elements
        for every file found in path.
        First element is the file name, the second one is a dictionary
        including a variable number of "facts" depending on the server
        and whether "facts" argument has been provided.
        z
OPTS MLST ;zMLSD %sZMLSDrNr	=rK)	rcrirrr<rC	partitionrhlower)
rpathZfactsrblinesrFZfacts_foundrsnameentryZfactkeyvaluerrrmlsdAs

zFTP.mlsdcCs0|jd|}|ddkr"t||jd|S)zRename a file.zRNFR rrVzRNTO )rcrrd)rZfromnameZtonamerYrrrrename]sz
FTP.renamecCs.|jd|}|dddkr"|St|dS)zDelete a file.zDELE NrO250200>rr)rcr)rfilenamerYrrrdeletedsz
FTP.deletecCsn|dkrPy
|jdStk
rL}z|jddddkr<WYdd}~Xq\Xn|dkr\d}d	|}|j|S)
zChange to a directory.z..ZCDUPrNrO500rrezCWD )rdrr")rdirnamemsgrbrrrcwdls
zFTP.cwdcCs:|jd|}|dddkr6|ddj}t|SdS)zRetrieve the size of a file.zSIZE NrOZ213)rcstripint)rrrYr>rrrr|yszFTP.sizecCs$|jd|}|jdsdSt|S)z+Make a directory, return its full pathname.zMKD 257r)rd
startswithparse257)rrrYrrrmkds
zFTP.mkdcCs|jd|S)zRemove a directory.zRMD )rd)rrrrrrmdszFTP.rmdcCs |jd}|jdsdSt|S)z!Return current working directory.ZPWDrr)rdrr)rrYrrrpwds

zFTP.pwdcCs|jd}|j|S)zQuit, and close the connection.ZQUIT)rdr!)rrYrrrrs
zFTP.quitcCsDz |j}d|_|dk	r|jWd|j}d|_|dk	r>|jXdS)z8Close the connection without assuming anything about it.N)r+r!r)rr+rrrrr!sz	FTP.close)rrrN)N)N)rrr)rN)N)rNN)N):rr
r__doc__r.rFTP_PORTr&MAXLINErMrr+r-r4r%rrrr#rr1r3debugr6r0rGrHrNrSr,r[rarcrdrkrnrtrxr~rrrrrrrrrrrrrr|rrrrr!rrrrrJsj

	

 
7



#

	
		c	@sneZdZdZejZdddddddedf	ddZdddZ	d	d
Z
ddZd
dZddZ
dddZddZdS)FTP_TLSaA FTP subclass which adds TLS support to FTP as described
        in RFC-4217.

        Connect as usual to port 21 implicitly securing the FTP control
        connection before authenticating.

        Securing the data connection requires user to explicitly ask
        for it by calling prot_p() method.

        Usage example:
        >>> from ftplib import FTP_TLS
        >>> ftps = FTP_TLS('ftp.python.org')
        >>> ftps.login()  # login anonymously previously securing control channel
        '230 Guest login ok, access restrictions apply.'
        >>> ftps.prot_p()  # switch to secure data connection
        '200 Protection level set to P'
        >>> ftps.retrlines('LIST')  # list directory content securely
        total 9
        drwxr-xr-x   8 root     wheel        1024 Jan  3  1994 .
        drwxr-xr-x   8 root     wheel        1024 Jan  3  1994 ..
        drwxr-xr-x   2 root     wheel        1024 Jan  3  1994 bin
        drwxr-xr-x   2 root     wheel        1024 Jan  3  1994 etc
        d-wxrwxr-x   2 ftp      wheel        1024 Sep  5 13:43 incoming
        drwxr-xr-x   2 root     wheel        1024 Nov 17  1993 lib
        drwxr-xr-x   6 1094     wheel        1024 Sep 13 19:07 pub
        drwxr-xr-x   3 root     wheel        1024 Jan  3  1994 usr
        -rw-r--r--   1 root     root          312 Aug  1  1994 welcome.msg
        '226 Transfer complete.'
        >>> ftps.quit()
        '221 Goodbye.'
        >>>
        rNc
Cs|dk	r|dk	rtd|dk	r0|dk	r0td|dk	s@|dk	rVddl}
|
jdtd||_||_|dkr|tj|j||d}||_	d|_
tj|||||||	dS)Nz4context and keyfile arguments are mutually exclusivez5context and certfile arguments are mutually exclusiverzAkeyfile and certfile are deprecated, use a custom context insteadrI)certfilekeyfileF)
rBwarningswarnDeprecationWarningrrsslZ_create_stdlib_contextssl_versioncontext_prot_prr)rrrrrrrrrrrrrrrs"zFTP_TLS.__init__TcCs,|rt|jtjr|jtj||||S)N)rrr	SSLSocketauthrr)rrrrZsecurerrrrsz
FTP_TLS.logincCsft|jtjrtd|jtjkr.|jd}n
|jd}|jj	|j|j
d|_|jjd|jd|_
|S)z2Set up secure control connection by using TLS/SSL.zAlready using TLSzAUTH TLSzAUTH SSL)server_hostnamer$)moder%)rrrrrBrPROTOCOL_SSLv23rdrwrap_socketrr*r%r+)rrYrrrrs

zFTP_TLS.authcCs0t|jtjstd|jd}|jj|_|S)z/Switch back to a clear-text control connection.z
not using TLSZCCC)rrrrrBrdr)rrYrrrcccs

zFTP_TLS.ccccCs|jd|jd}d|_|S)zSet up secure data connection.zPBSZ 0zPROT PT)rdr)rrYrrrprot_ps

zFTP_TLS.prot_pcCs|jd}d|_|S)z"Set up clear text data connection.zPROT CF)rdr)rrYrrrprot_cs
zFTP_TLS.prot_ccCs2tj|||\}}|jr*|jj||jd}||fS)N)r)rr~rrrr)rrbr{r}r|rrrr~s

zFTP_TLS.ntransfercmdcCs8dt}|jj||j}|dddkr4t||S)NsABORrOr\r]r^>r]r^r\)r_rrDrSr)rrFrYrrrra$sz
FTP_TLS.abort)rrrT)N)rr
rrrrrrrrrrrrr~rarrrrrs 



rcCs\|dddkrt|tdkr<ddl}|jd|j|jBatj|}|sNdSt|jdS)zParse the '150' response for a RETR request.
    Returns the expected transfer size or None; size is not guaranteed to
    be present in the 150 message.
    NrOryrz150 .* \((\d+) bytes\)r	)	r_150_rerecompile
IGNORECASEASCIImatchrgroup)rYrmrrrrz3s
rzcCs|dddkrt|tdkr6ddl}|jd|jatj|}|sLt||j}dj|dd}t	|dd>t	|d	}||fS)
zParse the '227' response for a PASV request.
    Raises error_proto if it does not contain '(h1,h2,h3,h4,p1,p2)'
    Return ('host.addr.as.numbers', port#) tuple.NrOZ227rz#(\d+),(\d+),(\d+),(\d+),(\d+),(\d+)rerPr7)
r_227_rerrrsearchrgroupsrir)rYrrZnumbersrr&rrrrvGs
rvcCs|dddkrt||jd}|dkr2t||jd|d}|dkrRt|||d||dkrrt|||d|j||d}t|dkrt||d}t|d}||fS)	zParse the '229' response for an EPSV request.
    Raises error_proto if it does not contain '(|||port|)'
    Return ('host.addr.as.numbers', port#) tuple.NrOZ229(r)r	r7)rfindrrhr;r)rYZpeerleftrightpartsrr&rrrrw[s 
rwcCs|dddkrt||dddkr,dSd}d}t|}xJ||kr||}|d}|dkr|||ksr||dkrtP|d}||}q>W|S)	zParse the '257' response for a MKD or PWD request.
    This is a response to a MKD or PWD request: a directory name.
    Returns the directoryname in the 257 reply.NrOrr7z "rr	")rr;)rYrr?nrZrrrrqs 
rcCst|dS)z+Default retrlines callback to print a line.N)r/)rFrrrrsrrIc	Cs|s|}d|}|j||j|t|jd\}}|j|||jd|}|ddd	krdt|jd|}|ddd
krt|j|jdS)z+Copy file from one FTP-instance to another.zTYPE ruzSTOR NrO125ryzRETR >ryr>ryr)rdrvrcrkrr[)	sourceZ
sourcenametargetZ
targetnamerZ
sourcehostZ
sourceportZtreplyZsreplyrrrftpcps

rcCsttjdkr"ttjtjdddl}d}d}x"tjddkrT|d}tjd=q4Wtjddddkrtjddd}tjd=tjd}t|}|j	|d}}}y|j|}Wn(t
k
r|dk	rtjjdYn:Xy|j
|\}}}Wn"tk
rtjjd	YnX|j|||xtjddD]}	|	ddd
krf|j|	ddnt|	dddkrd}
|	ddr|
d|	dd}
|j|
}n0|	d
kr|j|jn|jd|	tjjdq<W|jdS)zTest program.
    Usage: ftp [-d] [-r[file]] host [-l[dir]] [-d[dir]] [-p] [file] ...

    -d dir
    -l list
    -p password
    rIrNr	z-dz-rrz5Could not open account file -- using anonymous login.z$No account -- using anonymous login.z-lZCWDrz-pzRETR i)r;sysargvr/testrexitnetrcrr3rstderrwriteZauthenticatorsKeyErrorrrrcr6r4rstdoutr)rr.ZrcfilerZftpZuseridrrZnetrcobjr+rbrYrrrrsP	





r__main__)rr)%rrr'r__all__r`rr	Exceptionrrrrrrr rrCr_rrImportErrorrrrrZSSLErrorrrzrrvrwrrrrrrrrr<module>sP


d
|

9


OHA YOOOO