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
- 리눅스
- 유니티
- pandas
- PyQt5
- Unity
- swift
- mssql
- 날짜
- flutter
- ASP
- Excel
- javascript
- 다이어트
- 라즈베리파이
- 함수
- port
- urllib
- node.js
- MySQL
- python
- IOS
- MS-SQL
- ubuntu
- Linux
- 맛집
- sqlite
- tensorflow
- PyQt
- GIT
- PER
Archives
목록랭귀지/python (241)
아미(아름다운미소)
FTP를 사용하여 파일 전송하는 법 from win32com.client import gencache import ftplib # FTP 모듈 반입 session = ftplib.FTP('mysite.com','login','passord') # FTP 서버에 접속 uploadfile = open('upload.txt','rb') # 전송할 파일 열기 session.storbinary('STOR upload.txt', uploadfile) # 파일 전송 uploadfile.close() # 파일 닫기 session.quit() # FTP 세션
랭귀지/python
2017. 12. 15. 10:09