Skip to main content

No project description provided

Project description

cloudstorageio

Storage agnostic IO interface for humans

Developed and tested on python 3.6+

GitHub

PyPi

Getting Started

These instructions will get you a copy of the project up and running on your local machine.

  • S3 configs

    pip install awscli --upgrade --user
    

    set your aws configs

     sudo apt install awscli
    
    $ aws configure
    AWS Access Key ID [None]: AKIAIOSFODNN7EXAMPLE
    AWS Secret Access Key [None]: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
    Default region name [None]: us-west-2
    Default output format [None]: json
    

    click here for more info about configuration and installation

  • Google cloud storage configs

    Provide authentication credentials to your application code by setting the environment variable GOOGLE_APPLICATION_CREDENTIALS. Replace [FILE_NAME] with the file of the JSON file that contains your service account key

    GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/[FILE_NAME].json"
    

    click here for more info about configuration and installation

  • Dropbox workspace configs

    Provide app access token by setting the environment variable DROPBOX_TOKEN. Replace [TOKEN] with the generated token of your dropbox app

    DROPBOX_TOKEN='TOKEN'
    

    click here for more info about configuration and installation

Installation

The default installation includes only AWS connection.

pip install cloudstorageio

To add Google Drive install with drive extra:

pip install "cloudstorageio[drive]"

To add Google Storage install with google extra:

pip install "cloudstorageio[google]"

To add Dropbox install with dropbox extra:

pip install "cloudstorageio[dropbox]"

To install all extras run:

pip install "cloudstorageio[all]"

Usage

  • Write and read file
from cloudstorageio import CloudInterface

google_file_path = 'gs://bucket-name/path-to-file/sample-file.txt'
s3_file_path = 's3://bucket-name/path-to-file/sample-pic.jpg'
ci = CloudInterface()

# Write text to Google cloud storage file
with ci.open(google_file_path, 'w') as f:
   f.write("Lorem Ipsum is simply dummy text")
# OR
ci.save(google_file_path, "Lorem Ipsum is simply dummy text")

# Read picture from S3 storage
with ci.open(s3_file_path, 'rb') as f:
    s3_output = f.read()  # binary content of picture
# OR
ci.fetch(s3_file_path)
  • Remove, list, and check folder/file
from cloudstorageio import CloudInterface

dropbox_folder_path = 'dbx://bucket-name/folder'
s3_file_path = 's3://bucket-name/path-to-file/sample-pic.jpg'
ci = CloudInterface()

ci.isfile(s3_file_path) # returns True
ci.isdir(dropbox_folder_path) # returns True
ci.remove(s3_file_path) # removes file
ci.listdir(dropbox_folder_path) # lists folder content
  • Copy file
from cloudstorageio import CloudInterface

dropbox_file_path = 'dbx://bucket-name/path-to-file/sample-pic.jpg'
gs_file_path = 'gs://bucket-name/path-to-file/sample-file.txt'
ci = CloudInterface()

ci.copy(from_path=dropbox_file_path, to_path=gs_file_path) # copies dropbox file to gs
  • Copy dir
from cloudstorageio import CloudInterface

s3_dir = 's3://bucket-name/sample_folder'
gs_dir = 'gs://bucket-name/sample_folder'
ci = CloudInterface()

ci.copy_dir(source_dir=s3_dir, dest_dir=gs_dir) # copies s3 folder to gs

Powered by Cognaize

`# Changelog All major cloudstorageio changes and pypi releases are listed here

Changes

[0.0.1] - 2019-01-29

  • Created project skeleton

[0.0.2] - 2019-02-14

  • Implemented S3 & Google Cloud Storage Interfaces

[0.0.3] - 2019-02-28

  • Implemented Cloud Storage Interface
  • Implemented Local interface

[0.0.4] - 2019-05-31

  • Add delete, listdir & isfile/isdir methods for all interfaces

[0.0.5] - 2019-07-09

  • Implemented DropBox interface

[0.0.6] - 2019-07-24

  • Add copy_batch for folder copying

[0.0.7] - 2019-08-08

  • Add Google Drive interface

[0.0.8] - 2019-08-30

  • Add Async Cloud Interface

[0.0.9] - 2019-10-18

  • Structure changes (file renames/moves)
  • Implemented scalable unittests

[0.0.10] - 2020-07-16

  • Commented Overwriting loggers,
  • add cognaize logo in Readme

[0.1.0] - 2020-08-05

  • Add copy_dir for path to path copy
  • Change copy_batch for list to list copy
  • Usages in README

[0.1.1] - 2020-08-14

  • README changes

[0.1.2] - 2020-11-10

  • Using multipart upload when copying from local to S3

Pypi releases

See CHANGES references

[0.12.1] - 2019-03-12

  • [0.0.3]

[1.0.5] - 2019-06-18

  • [0.0.4]

[1.0.8] - 2019-08-01

  • [0.0.6]

[1.0.9] - 2019-10-24

  • [0.0.9]

[1.1.0] - 2020-08-05

  • [0.1.0]

[1.1.1] - 2020-08-14

  • [0.1.1]

[1.1.2] - 2020-11-10

  • [0.1.2]

[1.1.3] - 2020-11-10

  • Update listdir for s3

[1.2.1] - 2020-11-10

  • Add AWS session token support

[1.2.3] - 2020-11-10

  • Remove dropbox package dependency (dropbox will not be supported with this version)

[1.2.4] - 2020-11-10

  • Add option include_files for listdir

[1.2.7] - 2022-10-05

  • Updated build to setuptools

[1.2.8] - 2022-05-04

  • Fix error on listdir for s3 if the folder did not include subfolders
  • Add option include_files for listdir for non-recursive case

[1.2.9] - 2022-05-05

  • Add github workflows for merging
  • Update tests to use AWS mocker
  • Move moto dependency to dev-requirements

[1.2.10] - 2023-06-30

  • Fix listdir implementation to include full paths in S3
  • Fix path concatenation in S3

[1.2.11] - 2023-07-03

  • Add moto to test requirements

[1.2.12] - 2023-07-06

  • Add exclude options to copy_dir function in S3

[1.2.15] - 2023-09-29

  • Fix issue with document deepcopy
  • Add Dropbox, Google Storage and Drive as extra dependencies

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

cloudstorageio-1.2.15.tar.gz (23.7 kB view details)

Uploaded Source

Built Distribution

cloudstorageio-1.2.15-py3-none-any.whl (30.3 kB view details)

Uploaded Python 3

File details

Details for the file cloudstorageio-1.2.15.tar.gz.

File metadata

  • Download URL: cloudstorageio-1.2.15.tar.gz
  • Upload date:
  • Size: 23.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for cloudstorageio-1.2.15.tar.gz
Algorithm Hash digest
SHA256 41cbcc0dbbe2952b9eb277937022e3ca447055a9a1283a404645c552f3b6d3c3
MD5 99f11759b144f8f36c35fce12c37fcc4
BLAKE2b-256 c019e3d57dcad98e922ebb3b15a701976f055c606e8a5a872c3c64570dc0054f

See more details on using hashes here.

File details

Details for the file cloudstorageio-1.2.15-py3-none-any.whl.

File metadata

File hashes

Hashes for cloudstorageio-1.2.15-py3-none-any.whl
Algorithm Hash digest
SHA256 c7dbfd64b7248b8eadc1a7799b04b30fdb89e90efaea3b1b602afb114d67b97a
MD5 cd26dcf6415e8cda469ecfd2bbbbad75
BLAKE2b-256 1929a2c31c6006bd382d9f8006f1c1a11d9f977853f13d9d53203f1f0af2a092

See more details on using hashes here.

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