Skip to main content

Set of python tools that eases integration of cloud services in Python projects

Project description

PyPI version

Introduction

CloudSpeak is a set of python tools that eases integration of cloud services in Python projects.

It provides a set of tools that enhances communication and provides abstraction to developers so that they do not require to study the backend API -- this package does that for them.

Docs

Examples

  • Accessing Azure Blob Storage service:
from cloudspeak.api.azure import AzureService

service = AzureService(connection_string="...")
container = service['container']
file = container['path/to/blob']

# To download:
file.download()
content = file.data

# To upload:
file.data = content
file.upload(overwrite=True)
  • Transferring with progress:

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

cloudspeak-0.0.3-py3-none-any.whl (48.9 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