Python wrapper for reflink-copy
.
You can install the library via pip
from PyPI:
pip install reflink-copy
from reflink_copy import reflink, reflink_or_copy
reflink("file1", "file2")
reflink_or_copy("file1", "file2")
def reflink(src: str | os.PathLike[str], dst: str | os.PathLike[str]) -> None: ...
def reflink_or_copy(src: str | os.PathLike[str], dst: str | os.PathLike[str]) -> None: ...
python -m venv .venv; source .venv/bin/activate
pip install maturin pytest
maturin develop
pytest