Metadata-Version: 2.4
Name: pyfastfile
Version: 0.1.2.post1
Summary: A lightweight and fast Python API for simplifying file operations
Author: Batuhan Senol
License: Apache-2.0
Keywords: file,io,filesystem,utility,fastfile
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: System :: Filesystems
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# pyfastfile

A lightweight Python library for simple and fast file operations.

## Installation

```bash
pip install pyfastfile
```

## Usage

```python
from pyfastfile import overwrite, append, read, readlines

overwrite("test.txt", "Hello")
append("test.txt", "World")
read("test.txt")
readlines("test.txt", newline=True)
```

--Batuhan Şenol
