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
- 채보
- Numpy
- paramiko
- 컨테이너
- C++
- Linux
- error
- label
- Selenium
- LIST
- VS Code
- YOLO
- 기타 연주
- C#
- ubuntu
- OpenCV
- windows forms
- JSON
- Visual Studio
- Docker
- pytorch
- 핑거스타일
- 프로그래머스
- mysql
- SSH
- pip
- C
- Python
- 오류
- pandas
Archives
- Today
- Total
기계는 거짓말하지 않는다
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 = '/remote/path/to/upload.txt'
sftp.put(local_path, remote_path)
print(f"File uploaded: {local_path} -> {remote_path}")
# 원격 파일 다운로드
local_download_path = '/local/path/to/download.txt'
remote_download_path = '/remote/path/to/download.txt'
sftp.get(remote_download_path, local_download_path)
print(f"File downloaded: {remote_download_path} -> {local_download_path}")
# SFTP 클라이언트 종료
sftp.close()
# SSH 연결 종료
ssh.close()
'Python' 카테고리의 다른 글
Python 함수 주석 설명 추가 (0) | 2024.05.22 |
---|---|
Python 예외(Except) 처리 중 예외가 다시 발생 시 finally 절 실행 (0) | 2024.03.10 |
Python pip 패키지 목록 requirements.txt 생성, 설치 (0) | 2024.02.09 |
Python list 숫자 범위 내 빠진 숫자 탐색 (0) | 2024.02.03 |
AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK' 오류 (1) | 2024.01.27 |
Comments