Metadata-Version: 2.4
Name: safeiofile
Version: 0.1.0
Summary: Simple and safe file operations for Python
Author-email: "Omkar D. Dorugade" <omkardorugade007@email.com>
License: MIT
Project-URL: Homepage, https://github.com/omkar086/safeiofile_Lib
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# safeio 📂

A tiny Python library to simplify file I/O with features like appending, backups, and log rotation.

## Install

```bash
pip install safeio
```

## Usage

```python
from safeio import File

file = File("example.txt")
file.write("Hello").append("World").backup().rotate_if_large(max_mb=1)
```
