PYTHONPython

utils

real world projects / file sync / sync

Private notes
0/8000

Notes stay private to your browser until account sync is configured.

PYTHON
utils🐍
"""
Utility functions for file sync.
"""

from .hashing import calculate_hash, verify_hash
from .compression import compress_file, decompress_file
from .encryption import encrypt_file, decrypt_file

__all__ = [
    "calculate_hash", "verify_hash",
    "compress_file", "decompress_file",
    "encrypt_file", "decrypt_file"
]
PreviousNext