Metadata-Version: 2.4
Name: fileutils-nandu
Version: 0.1.1
Summary: Simple file handling utilities for Python
Author: Nandu
License: MIT
Keywords: file,utils,file-handling,python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# fileutils

A simple and practical Python utility package for common file operations.

## Features
- Read files
- Write files
- Append to files
- Check file existence
- Count number of lines in a file

## Installation

pip install fileutils

## Usage

from fileutils import write_file, read_file, line_count

write_file("example.txt", "Hello\nWorld")
print(read_file("example.txt"))
print(line_count("example.txt"))
