Skip to main content

Tree hash-storage files

Project description

Build status Documentation

Overview

Tree the library for saving a large number of files. For preservation it is enough to you to transfer a binary code of the file and the Tree will keep him.

Example

Superficial uses in the tree hash storage

from tree.tree import TreeStorage
from tree.config import TreeConfig

# Initialize config for the TreeStorage
config = TreeConfig({
    "PATH_TO_TREE": "/path/to/storage"
})

tree = TreeStorage(config)

# If you want add file to the Tree Storage
with open("/path/to/file", "rb") as file:
    tree.breed(file_byte=file.read(), mode='wb')
# after add file, method return status of writing.
# If add file status is success, tree save last
# hash of the file in the attribute file_hash_name

# For remove file from the Tree Storage
# you can call cut method and past
# to him hash name of file which you have delete
tree.cut(file_hash_name=tree.file_hash_name, greedy=True)

Installing

Python Version Project Version

PyPy and PyPy3 are also supported (and tested against).

Download and install the latest released version from PyPI:

pip install tree-storage

Download and install the development version from GitHub:

pip install git+https://github.com/valeriiduz/Tree

Installing from source (installs the version in the current working directory):

python setup.py install

(In all cases, add –user to the install command to install in the current user’s home directory.) Install and Update Tree library using pip:

Documentation

Read full documentation on https://tree.readthedocs.io/.

License

This repository is distributed under The MIT license

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

tree-storage-0.0.24.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

tree_storage-0.0.24-py3-none-any.whl (6.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