Metadata-Version: 2.4
Name: pyutils-demo
Version: 1.0.0
Summary: A collection of utility functions for Python
Author: pyutils
Author-email: 
Project-URL: Homepage, https://github.com/yourusername/pyutils
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# pyutils

A collection of utility functions for Python.

## Installation

```bash
pip install pyutils-demo
```

## Usage

### String Utilities

```python
from pyutils import reverse_string, to_camel_case, count_words

reverse_string('hello')  # 'olleh'
to_camel_case('hello_world')  # 'helloWorld'
count_words('Hello World')  # 2
```

### Date Utilities

```python
from pyutils import format_datetime, days_ago, is_weekend

format_datetime()  # '2024-01-01 12:00:00'
days_ago(7)  # datetime object 7 days ago
is_weekend()  # True/False
```

### File Utilities

```python
from pyutils import read_file, write_file, read_json

write_file('test.txt', 'Hello')
read_file('test.txt')  # 'Hello'
read_json('data.json')  # {'key': 'value'}
```

### Math Utilities

```python
from pyutils import add, multiply, average, is_prime

add(2, 3)  # 5
average([1, 2, 3])  # 2.0
is_prime(17)  # True
```

## License

MIT
