Leaf is a small (just two .py files) on-demand hierachical filesystem database.
Project description
LEAF
Leaf is a small (just two .py files) in-memory on-demand graph filesystem database.
Example usage:
import os
import shutil
from leaf import DirectoryObject
from src.leaf import FileObject
root_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'files')
os.mkdir(root_dir)
root = DirectoryObject(root_dir)
directory: DirectoryObject = root.add_directory('test')
print(os.path.isdir(os.path.join(root_dir, 'test'))) # True
f1: FileObject = directory.add_file('first_file.json')
f2: FileObject = directory.add_file('second_file.json')
print(os.path.isfile(os.path.join(root_dir, 'test', 'first_file.json'))) # True
# Find a file recursively
f3: FileObject | None = root.first_or_default(lambda o: o.name == 'first_file.json', recursive=True)
print(f1 == f3) # True
# Get children
for children in directory.children:
print(children)
# FILE: D:\PycharmProjects\leaf\leaf\src\files\test\first_file.json
# FILE: D:\PycharmProjects\leaf\leaf\src\files\test\second_file.json
# Get descendants
for desc in root.descendants:
print(desc)
# DIRECTORY: D:\PycharmProjects\leaf\leaf\src\files\test
# FILE: D:\PycharmProjects\leaf\leaf\src\files\test\first_file.json
# FILE: D:\PycharmProjects\leaf\leaf\src\files\test\second_file.json
# Write contents
f1.write_string('hello')
print(f1.read_string())
# hello
shutil.rmtree(root_dir)
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
leaf_BasedLabs-0.0.2.tar.gz
(4.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file leaf_BasedLabs-0.0.2.tar.gz.
File metadata
- Download URL: leaf_BasedLabs-0.0.2.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b674713a6d6463cf48cc1542a1665be7a98c38753e7c1d9c419cdbb5c36ac802
|
|
| MD5 |
1b8b1f57eaeee1421d2f0ddf757139ba
|
|
| BLAKE2b-256 |
aeec46ba174daecf9252ef515a33da3b93a95ca4a9e995fa1f16660faddc290b
|
File details
Details for the file leaf_BasedLabs-0.0.2-py3-none-any.whl.
File metadata
- Download URL: leaf_BasedLabs-0.0.2-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f4c854629a5a28c7099c121dfd37e0e2d071e6d8949144305334fa752332bfd
|
|
| MD5 |
287fa6e49b896eadb5f86e48d90bd665
|
|
| BLAKE2b-256 |
2971d6239bae50109482a1a9b41e43f02004474713cd6d9c3b0787fc733061dc
|