Metadata-Version: 2.4
Name: pyfastfile
Version: 0.1.5
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
import pyfastfile as pf

# === Main Functions

pf.overwrite("test.txt", "Hello")
pf.append("test.txt", "World")
pf.read("test.txt")
pf.readlines("test.txt", newline=True)
pf.getline("test.txt", line=0, newline=True)
pf.exists("test.txt")
pf.find("test.txt", "testdata")
pf.find_num("test.txt", "testdata") # Return Index

# === Utility Functions ===

pf.destroynewline("test")

```
[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*
