edit : clip-vit 모델 추가
This commit is contained in:
@@ -2,10 +2,11 @@ import paramiko
|
||||
|
||||
class CustomSFTPClient():
|
||||
def __init__(self):
|
||||
host = "192.168.200.230"
|
||||
port = 22
|
||||
id = "fermat"
|
||||
pw = "1234"
|
||||
from config import rest_config
|
||||
host = rest_config.sftp_host
|
||||
port = rest_config.sftp_port
|
||||
id = rest_config.sftp_id
|
||||
pw = rest_config.sftp_pw
|
||||
|
||||
self.ssh_client = paramiko.SSHClient()
|
||||
self.ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
||||
|
||||
Reference in New Issue
Block a user