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

# cozy-kit

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

Created by **Youssef Ahmed**

---

# Requirements

- Python 3.8+

---

# 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!
```

---

# Classes

| Class | Description |
|-------|-------------|
| `Greeting` | Greetings, quotes, bedtime stories, motivations, fun facts |
| `Timer` | Countdown, Pomodoro, stopwatch, wait |
| `TextStudio` | Text conversion, ciphers, formatting |
| `Details` | Package metadata |

---

# 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)

---

# Accessing Package Details

To access metadata like the author name, use the `Details` class:

```python
from cozy_kit import Details

info = Details()
print(info.details["author"])
# Youssef Ahmed
```

You can also access individual attributes directly:

```python
from cozy_kit import Details

info = Details()
print(info.author)
print(info.github)
```

---

# License

MIT
