<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| client = paramiko.SSHClient() | |
| client._policy = paramiko.WarningPolicy() | |
| client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) | |
| ssh_config = paramiko.SSHConfig() | |
| user_config_file = os.path.expanduser("~/.ssh/config") | |
| if os.path.exists(user_config_file): | |
| with open(user_config_file) as f: | |
| ssh_config.parse(f) |