Metadata-Version: 2.4
Name: yoyo-bgw
Version: 0.1.4
Summary: The module that is your welcoming code
Author: youssefahmed2017
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# yoyo-bgw

## A cozy Python package with greetings, bedtime stories, quotes, and friendly messages.

#### Created by Youssef.

---

# Installation

#### Install the package:

```bash
pip install yoyo-bgw
```
---
#### Update the package:
```bash
pip install --upgrade yoyo-bgw
```
---

## What is this package?

### yoyo-bgw is a friendly Python package that provides:

#### Welcome messages
#### Goodbye messages
#### Morning greetings
#### Bedtime stories
#### Motivational quotes
#### JSON-powered random content

#### The package is designed to be simple, cozy, and beginner-friendly. 

---
## How to use this package:
### Import it:
```bash
from yoyo import Yoyo
```
---
### Then create the object:
```python
from yoyo import Yoyo

example_name = Yoyo(
                name='Example',
                age=12,
                height=12,
                weight=13,
                eye_color='blue',
                hair_color='black',
                gender='male',
                nickname='Example'
)
```
---

### Functions

- `welcome()`
- `good_morning()`
- `good_night()`
- `info()`
- `bye()`
---

## Example Usage:
```python
from yoyo import Yoyo

person = Yoyo(
    name="Youssef",
    nickname="Yoyo"
)

print(person.welcome())
```
---

## Example Output:
```
Welcome Youssef!
Or welcome Yoyo!
```
