Skip to main content

pathlib-like Path object for smb protocol

Project description

smb-path

PyPI - Version PyPI - Python Version


Table of Contents

About

Many tools make use of pathlib.Path internally. This is a problem if the files are located on a fileshare. smb-path provides wrapper of Path which acts accordingly but using the SMB protocol for file operations instead of the local hosts file system. Atm. smb-path focuses on pure reading of the data. The SMB protocol implementation of smbprotocol is used.

All the utility functions of Path should work for SmbPath as well (like the / operator, with_suffix, parents, etc.).

Currently the following SMB dependent functions are implemented:

  • open (and hence dependent funtions like read_bytes, etc.)
  • stat (and hence dependent functions like lstat, is_file, is_dir, exists, etc.)
  • iterdir

In future versions, some functions probably get overwritten with a dummy since functions like resolve have no use for a SMB path.

Missing write operations with current version (and questionable whether all of them will come) are:

  • touch
  • mkdir
  • rmdir
  • chmod
  • unlink
  • rename
  • replace
  • symlink_to
  • hardlink_to

Installation

pip install smb-path

Usage

smb-path just needs to be installed. After the installation, you just use Path() to instantiate a SmbPath. It is checked whether the provided path string applies to the regex pattern r"(//|\\\\)([a-z0-9]+)((\.[a-z0-9]+)*)(\.[a-z]+){1}".

The path string

  • must start with // or \\
  • must continue with a server name, a-z and 0-9 allowed, eg. filshr33
  • optionally an arbitrary number of periods separated by a ., a-z and 0-9 allowed, eg. .us.dieterscompany
  • must continue with an url closing with . then a-z, eg. .com
  • can contain trailing fileshare names, directories or files, eg. /myShare/myDir/myFile.txt

Hence //filshr33.us.dieterscompany.com/myShare/myDir/myFile.txt would be a valid SMB path.

If the pattern does not match, a Path object like you are used to it is returned (WindowsPath or PosixPath).

SMB Configuration

Use smbclient.ClientConfig to configure the SMB connection. Eg. smbclient.ClientConfig(username="itsme", password="myPW"). Refer to smbprotocol for further information.

Compatibility

smbprotocol is platform agnostic since it does not care about the path separator.

Tested with installation into a python -m venv virtual environment.

OS Python Supported
Windows 3.11
Windows 3.7, 3.8, 3.9, 3.10
Windows 3.12
Linux 3.7, 3.8, 3.9, 3.10, 3.11
Linux 3.12

License

smb-path is distributed under the terms of the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

smb_path-0.4.0-py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page