Metadata-Version: 2.4
Name: cozy-kit
Version: 0.2.8
Summary: The basic library for coding
Author: youssefahmed2017
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# cozy-kit

> A cozy Python package with greetings, quotes, bedtime stories, timers, and text utilities.

Created by **Youssef**

---
# Requirements

- Python +3.11

---

# Installation

## Install

```bash
pip install cozy-kit
```



## Upgrade

```bash
pip install --upgrade cozy-kit
```

---

# Quick Example
## Usage
```python
from cozy_kit import Greeting

user = Greeting(
    name="Youssef",
    nickname="Yoyo"
)

print(user.welcome())
```

## Output
```text
Welcome Youssef!
Or welcome Yoyo!
```

---

# Other Docs
- [Greeting Class](docs/greeting_class.md)
- [Timer Class](docs/timer_class.md)
- [TextStudio Class](docs/textstudio_class.md)
- [Quick Summary Of Everything](docs/summary.md)
