Metadata-Version: 2.3
Name: reflink-copy
Version: 0.3.0
License-File: LICENSE
License: Apache License 2.0
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

### `reflink-copy`

Python wrapper for [`reflink-copy`](https://github.com/cargo-bins/reflink-copy).

### Usage


```python
from reflink_copy import reflink, reflink_or_copy

reflink("file1", "file2")
reflink_or_copy("file1", "file2")
```

### Reference

```python
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: ...
```

### Contributing

```bash
python -m venv .venv; source .venv/bin/activate
pip install maturin
maturin develop
pytest
```

