Skip to main content

IoT Samba Client Library for Python

Project description

iot-samba-client

python version pre-commit Keep a Changelog CI_CD GitHub_Actions package PyPI smbprotocol version

This package is a wrapper around the smbprotocol SDK to provide a synchronous client for interacting with file shares from IoT edge devices.

Official Documentation | Source code | Package PyPI

Table of Contents

Versioning

This repository adheres to Semantic Versioning. It will be maintained through the CHANGELOG.md and in GitHub Releases. It's important to note that you must maintain the version with your releases in iot/samba/client/_version.py, otherwise a new package version will fail to get published.

Getting Started

This section provides basic examples with the iot-samba-client.

Prerequisites

  • Python 3.7 or later is required to use this package.

  • You must have a Samba Windows File Share server to use this package.

Basic Examples

  1. Install via pip:

    pip install iot-samba-client
    
  2. Import and say hello:

    from iot.samba.client import __version__
    
    
    print(f"hello world from iot-samba-client version: {__version__}")
    
  3. Basic usage:

    import tempfile
    
    from iot.samba.client import IoTSambaClient
    
    # instantiate client
    samba_client = IoTSambaClient(
        smb_server="windows-samba-s",
        smb_host="1.2.3.456",
        smb_port=445,
        smb_user="mySambaUserName",
        smb_pass="mySambaPass***"
    )
    
    # print info w/ repr
    print(f"{samba_client.__repr__()}")
    
    # download blob to tempfile
    temp_file = tempfile.NamedTemporaryFile()
    download_result = samba_client.download_file(
        share="MY_SAMBA_SHARE",
        path="path\\to\\blob\\parent\\dir",
        file="blob.txt",
        dest=temp_file.name,
    )
    if not download_result:
        print("unable to download file")
        temp_file.close()
        samba_client.disconnect()
        raise
    
    # upload tempfile to blob
    upload_result = samba_client.upload_file(
        share="MY_SAMBA_SHARE",
        path="path\\to\\new\\parent\\dir",
        file="newBlob.txt",
        source=temp_file.name,
    )
    if not upload_result:
        print("unable to upload file")
        temp_file.close()
        samba_client.disconnect()
        raise
    
    # clean-up local memory and disconnect from smb session
    temp_file.close()
    samba_client.disconnect()
    

Project details


Download files

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

Source Distribution

iot-samba-client-1.0.5.tar.gz (5.0 kB view hashes)

Uploaded Source

Built Distribution

iot_samba_client-1.0.5-py3-none-any.whl (4.5 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