Metadata-Version: 2.4
Name: pyfastfile
Version: 0.1.3
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: Intended Audience :: Developers
Classifier: Topic :: System :: Filesystems
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# pyfastfile

A lightweight Python library for __easy-to-use__ 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)
```
[Project Repo Github](https://github.com/batuhansenol/pyfastfile) • [Project Repo PyPI](https://pypi.org/project/pyfastfile/) 

[Author Github Profile](https://github.com/batuhansenol) • [Author PyPI Profile](https://pypi.org/user/Batuhan_Senol/)

*--Batuhan Şenol*
