Metadata-Version: 2.4
Name: cozy-kit
Version: 0.2.9
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](https://github.com/youssefahmed2017/cozy-kit/blob/main/docs/greeting_class.md)

- [Timer Class](https://github.com/youssefahmed2017/cozy-kit/blob/main/docs/timer_class.md)

- [TextStudio Class](https://github.com/youssefahmed2017/cozy-kit/blob/main/docs/textstudio_class.md)

- [Quick Summary Of Everything](https://github.com/youssefahmed2017/cozy-kit/blob/main/docs/summary.md)
