Metadata-Version: 2.4
Name: filesafe_sanitization
Version: 0.1.0
Summary: Tiny filename sanitizer for uploads
Author: Mohammed Hussain
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# filesafe

Minimal helper to sanitize filenames before uploading (e.g., to S3).

API:
- `safe_filename(name: str, max_len: int = 100, default: str = "file", ascii_only: bool = True) -> str`

Example:
```python
from filesafe import safe_filename
safe = safe_filename(" My Report (final).PDF ")
# "My_Report_final.pdf"
```
