Metadata-Version: 2.4
Name: cozy-kit
Version: 0.3.2
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**

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

---

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

---

# Quick Note
### If you want to access the details (like version), You can't type:
```python
from cozy_kit import *

print(__version__)
```
### You need to type:
```python
from cozy_kit import *

print(__details__['version'])

# or

from cozy_kit import __details__

print(__details__['version'])
```
## Bonus
### You can type:
```python
from cozy_kit import *

details = __details__
print(details['version'])
```
