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
- tensorflow
- javascript
- 날짜
- python
- 다이어트
- 맛집
- urllib
- sqlite
- 함수
- PyQt5
- mssql
- MySQL
- IOS
- ASP
- MS-SQL
- swift
- ubuntu
- Excel
- Unity
- PyQt
- 라즈베리파이
- 리눅스
- PER
- GIT
- Linux
- port
- pandas
- node.js
- flutter
- 유니티
Archives
목록2018/08/10 (1)
아미(아름다운미소)
[ftplib] python ftp file upload
[ftplib] python ftp file upload import ftplib filename = "sample.png" ftp = ftplib.FTP() ftp.connect("111.111.111.111","21") #Ftp 주소 Connect(주소 , 포트) ftp.login("id", "password") #login (ID, Password) ftp.cwd("/forder/Test") #파일 전송할 Ftp 주소 (받을 주소) os.chdir(r"D:\\FTP_TEST\\img") #파일 전송 대상의 주소(보내는 주소) my_file = open(filename, 'rb') #Open( ~ ,'r')
랭귀지/python
2018. 8. 10. 09:30