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
- ubuntu
- 기타 연주
- C++
- label
- YOLO
- VS Code
- 명령어
- OpenCV
- paramiko
- 핑거스타일
- C
- Selenium
- Numpy
- LIST
- C#
- SSH
- 채보
- Visual Studio
- JSON
- error
- pip
- windows forms
- Linux
- pytorch
- 프로그래머스
- Docker
- mysql
- Python
- 오류
Archives
- Today
- Total
목록sftp (1)
기계는 거짓말하지 않는다
Python Paramiko module SSH SFTP 파일 업, 다운로드
Paramiko를 사용하여 SFTP 클라이언트를 열어 파일을 업로드, 다운로드하는 간략한 방법이다. import paramiko # SSH 연결 설정 ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) # SSH 연결 ssh.connect('server address', username='user', password='user_password') # SFTP 클라이언트 열기 sftp = ssh.open_sftp() # SFTP 작업 수행 # 파일 업로드, 다운로드 또는 디렉터리 관리 등 수행 # 로컬 파일 업로드 local_path = '/local/path/to/upload.txt' remote_path..
Python
2024. 2. 14. 21:26