# Paramiko - Secure SSH Connections in Python

Paramiko is a Python library that provides a pure-Python implementation of SSHv2 for secure communication between Python applications and remote devices over SSH. Its primary purpose is to facilitate secure remote access and management of network devices, servers, and other systems.

Paramiko offers a range of capabilities essential for building robust and secure SSH connections in Python. These capabilities include:

- Establishing encrypted SSH connections
- Authenticating users using various methods (e.g., passwords, SSH keys)
- Executing commands on remote hosts and retrieving responses
- Transferring files securely between hosts using SFTP
- Handling SSH negotiation, key exchange, and encryption algorithms

```{toctree}
:maxdepth: 1

01_intro
```
