Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- sqlite
- ubuntu
- urllib
- node.js
- Unity
- mssql
- 함수
- python
- Linux
- javascript
- PyQt5
- 유니티
- 라즈베리파이
- ASP
- Excel
- flutter
- swift
- MySQL
- 맛집
- PyQt
- 리눅스
- IOS
- pandas
- port
- 다이어트
- PER
- tensorflow
- MS-SQL
- 날짜
- GIT
Archives
목록2018/08/11 (1)
아미(아름다운미소)
Python: Download from FTP server using ftplib
Python: ftplib를 이용해 FTP server에서 다운로드받기 import ftplib path = 'pub/path/' filename = 'sample.txt' ftp = ftplib.FTP("Server IP") ftp.login("UserName", "Password") ftp.cwd(path) ftp.retrbinary("RETR " + filename, open(filename, 'wb').write) ftp.quit()
랭귀지/python
2018. 8. 11. 08:25