A Pathlib API for SFTP drive
Project description
sftppathlib
sftppathlib uses pathlib_abc and paramiko to create a pathlib API for SFTP clients.
The documentation is the same as the standard pathlib library, with some differences.
Differences
The methods expanduser(), readlink(), hardlink_to, replace(), owner(), group(), from_uri, as_uri() are not supported. Subsequently, any method in pathlib_abc which relies on these will also fail. For some of them, it's because they don't have any meaning on SFTP clients, others because I don't trust myself to implement them correctly.
The methods stat, symlink_to, chmod have their respective parameters follow_symlinks, target_is_directory, follow_symlinks ignored, since Paramiko's SFTPClient does not support them.
Some of Paramiko's SFTPClient methods would return status codes like SFTP_OK
; these are ignored.
Usage
The sftppathlib relies on an instance of an SFTPClient to be used. This can be either be created in the background using the default setup, or manually and passing it to the __init__ constructor.
With setup
The default connection will use Paramiko's SSHClient to connect. If you are only connecting to one SFTP server, it's recommended to create a config file in the application directory:
- Windows:
~/AppData/Roaming/sftppathlib/config.yaml
- Linux:
~/.local/share/sftppathlib/config.yaml
- Apple:
~/Library/Application Support/sftppathlib/config.yaml
The file should be the parameters passed to SSHClient.connect().
hostname: sftp.<domain>
port: 22
username: <username>
password: <password>
It will also use the key defined in ~/.ssh/known_hosts
. This will typically include an entry starting with [sftp.<domain>]:22
.
After this, sftppathlib.SFTPPath can be used like pathlib.Path:
from sftppathlib import SFTPPath
root = SFTPPath("www/")
path = root / "hello.txt"
path.write_text("hello world", encoding="utf-8")
print(path.read_text(encoding="utf-8"))
for child in root.iterdir():
print(child)
Without setup
Note: The CREDENTIALS
variable should be imported from another file or a module; never include secrets in code.
import paramiko
from sftppathlib import SFTPPath
CREDENTIALS = {
"hostname": "sftp.<domain>",
"port": 22,
"username": "<username>",
"password": "<password>",
}
ssh_client = paramiko.SSHClient()
ssh_client.load_system_host_keys()
ssh_client.connect(**CREDENTIALS)
sftp_client = paramiko.sftp_client.SFTPClient.from_transport(
ssh_client.get_transport())
root = SFTPPath("www/", accessor=sftp_client)
...
If many instances are needed, it can be beneficial to subclass SFTPClient
and create a Path
method:
...
class SFTPPathClient(paramiko.sftp_client.SFTPClient):
def Path(self, path, *paths):
return SFTPPath(path, *paths, accessor=self)
sftp_path_client = SFTPPathClient.from_transport(
ssh_client.get_transport())
root = sftp_path_client.SFTPPath("www/")
...
Closing connections
It is assumed that you want to keep the connections open during the duration of the program. If not, please use SFTPClient.close()
and SSHClient.close()
.
Acknowledgments
Thanks to the paramiko/contributors and the pathlib-abc/contributors. This extends to anyone involved with the standard pathlib library, but I cannot find the list.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sftppathlib-0.2.0.tar.gz
.
File metadata
- Download URL: sftppathlib-0.2.0.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c315c3e63c071c7da745e4f38fd50780774a298e284539acc00408b6177a30b |
|
MD5 | 8f62e8a39decb373193e50b45d1a9c97 |
|
BLAKE2b-256 | cf3fef03337b450a6871e5832e3b305097a4d7657a2aec407c154cea47cef989 |
File details
Details for the file sftppathlib-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: sftppathlib-0.2.0-py3-none-any.whl
- Upload date:
- Size: 15.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10b4bb81a6d56ccbd5815b0008f3bee041977aebbeb6c094a0b1380a3011fbea |
|
MD5 | f1d09db4c988b27494809fcf06935f34 |
|
BLAKE2b-256 | 03c32894b07d73b38982eaff754ab35bf0468e3effd4b0040297e62c20c63614 |