Skip to main content

IoT FTPS Client Library for Python

Project description

iot-ftps-client

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

This package is a wrapper around the ftplib protocol to provide a synchronous client for interacting with FTPS servers 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/ftps/client/_version.py, otherwise a new package version will fail to get published.

Getting Started

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

Prerequisites

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

Basic Examples

  1. Install via pip:

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

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

    import tempfile
    
    from iot.ftps.client import IoTFTPSClient
    
    # instantiate client
    ftps_client = IoTFTPSClient(
        ftps_host="myServerIP",
        ftps_port=990,
        ftps_user="myServerUsername",
        ftps_pass="myServerPass***",
        ssl_implicit=True,
    )
    
    # print info w/ repr
    print(f"{ftps_client.__repr__()}")
    
    # download blob to tempfile
    temp_file = tempfile.NamedTemporaryFile()
    download_result = ftps_client.download_file(
        source="path/to/blob.txt",
        dest=temp_file.name,
    )
    if not download_result:
        print("unable to download file")
        temp_file.close()
        raise
    
    # upload tempfile to blob
    upload_result = ftps_client.upload_file(
        source=temp_file.name,
        dest="path/to/new/blob.txt",
    )
    if not upload_result:
        print("unable to upload file")
        temp_file.close()
        raise
    
    # clean-up local memory
    temp_file.close()
    

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-ftps-client-1.1.1.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

iot_ftps_client-1.1.1-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file iot-ftps-client-1.1.1.tar.gz.

File metadata

  • Download URL: iot-ftps-client-1.1.1.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for iot-ftps-client-1.1.1.tar.gz
Algorithm Hash digest
SHA256 6f997980a378f71eef17522f0bdb37104b962a73112e2d27f4acc6a9c64b9d0f
MD5 7937380b4205f51776ca46fe1c8cea91
BLAKE2b-256 98ac50f1763464f89c31a8f7864f6f722be82443856416e5fc968479f20cc163

See more details on using hashes here.

File details

Details for the file iot_ftps_client-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for iot_ftps_client-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cc9397da9c2b9fd879ed8ff1e328c8af0808e0b173fccb30fcbcea1b9d7772e0
MD5 678af11668bb5c58eaab7c0068bfe688
BLAKE2b-256 b74b9d97dda02acad05a6fa755b325588f1365e4d7fe1faf91112f31c1155c56

See more details on using hashes here.

Supported by

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