-
[Python] FTP TLS Download 다운로드Python/Python Programming 2018. 8. 7. 01:44
DOCS : https://docs.python.org/3.6/library/ftplib.html?highlight=ftp_tls
from ftplib import FTP_TLS ftps = FTP_TLS('host') ftps.login('host', 'passwd') ftps.prot_p() filename = 'test1.txt' myfile = open(filename, 'wb') ftps.retrbinary('RETR %s' % filename, myfile.write) ftps.close()
'Python > Python Programming' 카테고리의 다른 글
[Python] datetime.strftime를 이용한 날짜와 시간 변환 (0) 2019.04.11 파이썬(Python) 설치 (1) 2019.03.17 [Python] ODBC driver를 이용한 mssql 연결 (0) 2018.12.29 [Python] File Copy (파일복사) (0) 2018.09.03 [Python] Comparison of Datetime Type Using Python (0) 2018.06.15 [ Python ] shutil모듈의 rmtree 메소드를 이용한 하위 디렉토리와 파일 삭제 (0) 2018.05.22 [Python] 3.6+에서 사전자료형(Dict)은 입력순서를 보존 (0) 2018.05.19 [Python] strip, rstrip, lstrip - 공백과 문자 제거 함수 (0) 2018.05.19