Simple Data Abstraction to access different types of storages.
Project description
sdaab
Simple Data Abstraction provides an abstraction layer to access different types of storage (e.g. local disk, S3). Basic file management methods are implemented for each type of storage.
Installation
To install the package:
pip install sdaab
Example of usage:
from sdaab.disk.storage_disk import StorageDisk
# Initialize the storage object
s = StorageDisk(root_path="/tmp/")
# You can mkdir, rename, ls, cp, mv, etc.
s.mkdir("folder1")
s.rename("folder1", "folder2")
# You can also upload or download files.
v1 = "Hello world!"
s.upload_from_memory(v1, "v1")
v2 = s.download_to_memory(v2, "/folder3/v2")
# When you want to switch to another storage,
# just re-initialize the storage object and
# the methods will work exactly as before.
s = StorageS3boto(
host="s3.eu-west-3.amazonaws.com",
port=1234,
access_key="xxxyyyzzz",
secret_key="aaabbbccc",
bucket="bucket-x",
calling_format="boto.s3.connection.SubdomainCallingFormat",
secure=True,
root_path="/"
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sdaab-1.0.2.tar.gz
(11.1 kB
view details)
File details
Details for the file sdaab-1.0.2.tar.gz
.
File metadata
- Download URL: sdaab-1.0.2.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9bbbae40ff7b9ef6c8d4d8dc9abd0318be4123dc6598b341cef96739be76424e |
|
MD5 | 835f8893597cce325ac3667bacde9f47 |
|
BLAKE2b-256 | af7d6476659dad1f663353653c47150f122e16f71f6e7d98d137f5d8c08c28f1 |