Metadata-Version: 2.4
Name: py-trashguard
Version: 0.1.3
Summary: Safe os.remove alternative with soft delete to .trash/ folder
Author-email: avishek devnath <avishekdevnath@gmail.com>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Filesystems
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# py-trashguard

[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/py-trashguard)](https://pypi.org/project/py-trashguard/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

**Author:** avishek devnath (<avishekdevnath@gmail.com>)  
**License:** MIT License

---

A safe, user-friendly alternative to `os.remove()` that moves files to a `.trash/` folder instead of deleting them permanently. Use it as a Python API or a CLI tool to protect your files from accidental deletion.

---

## Features
- **Soft-delete files:** Move files to a `.trash/` directory instead of permanent removal
- **Restore files:** Bring back files from the trash easily
- **List trashed files:** See what’s in your trash
- **No dependencies:** 100% Python standard library

## Installation

Install from PyPI:
```bash
pip install py-trashguard
```

Or install from source:
```bash
pip install .
```

## Usage

### Python API Example
```python
from pytrashguard import trash, restore, list_trash

# Move a file to trash
t = trash("myfile.txt")
print(f"Trashed: {t}")

# List trashed files
print("In trash:", list_trash())

# Restore a file from trash
r = restore("myfile.txt")
print(f"Restored: {r}")
```

### Command Line Interface Example
Move a file to trash:
```bash
py-trashguard --trash myfile.txt
```

List trashed files:
```bash
py-trashguard --list
```

Restore a file from trash:
```bash
py-trashguard --restore myfile.txt
```

## Project Structure
- `pytrashguard/core.py`: Core logic
- `pytrashguard/cli.py`: CLI entry point
- `pytrashguard/__init__.py`: API exposure
- `pyproject.toml`: Packaging
- `README.md`: Documentation
- `LICENSE`: MIT License

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details. 
