Metadata-Version: 2.4
Name: c66
Version: 0.1.0
Summary: A collection of handy Python utilities
Author-email: ChoCho66 <porkdie@gmail.com>
License-File: LICENSE
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# c66

A collection of handy Python utilities.

## Installation

```bash
pip install c66
```

## Usage

### `pp` - Print variable names and values
Prints the names and values of variables from the calling line.

```python
from c66 import pp

x = 10
y = "hello"
pp(x, y + " world")
```

Output:
```
x: 10
y + " world": hello world
```

### More Tools
Additional utilities will be added in future updates. Stay tuned!

## Author
ChoCho66

## License
MIT
