Metadata-Version: 2.3
Name: EasyOutput
Version: 0.1.1
Summary: Colored messages in the palm of your hand
Project-URL: Homepage, https://github.com/RasinBrand/EasyOutput/
Project-URL: Issues, https://github.com/RasinBrand/EasyOutput/issues/new/choose
Project-URL: Feature Request, https://github.com/RasinBrand/EasyOutput/issues/new/choose
Author-email: Brandon McKinney <brandonaustinmck01@icloud.com>
Maintainer-email: Brandon McKinney <brandonaustinmck01@icloud.com>
License: MIT License
        
        Copyright (c) 2024 Brandon McKinney
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE.txt
Keywords: Colored Messages,Easy,Error Message,Success Message,Warning Message
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: Freeware
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Requires-Dist: colorama
Description-Content-Type: text/markdown

# Easy Output

```py
# How to use 👽
from EasyOutput.EasyOutput import *
```

![PyPI - Version](https://img.shields.io/pypi/v/EasyOutput?style=for-the-badge&logo=pypi&label=EasyOutput&color=55%2C%20117%2C%20169)\
![PyPI - Downloads](https://img.shields.io/pypi/dm/EasyOutput?style=for-the-badge&logo=pypi)
\
![PyPI - Downloads](https://img.shields.io/pypi/dw/EasyOutput?style=for-the-badge&logo=pypi)
\
![PyPI - Downloads](https://img.shields.io/pypi/dd/EasyOutput?style=for-the-badge&logo=pypi)
\
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/RasinBrand/EasyOutput?style=for-the-badge&logo=github)\
![easyoutput](https://i.gyazo.com/e8c1bb4fe08ade9c2ce6856386f48e1f.png)

> [!IMPORTANT]
> I am always updating this and sometimes those updates can go sideways. Please use the [issues](https://github.com/FrankAustin808/EasyOutput/issues/new/choose) section on github to notify me of anything i have missed! If you would like me to add something, please use the [Feature Request](https://github.com/FrankAustin808/EasyOutput/issues/new/choose) option!

## Information ℹ️

**EasyOutput** consists of easy colored print options without the extra work.

```py
# As of v0.1.0 you can now change the color of your text.
from EasyOutput.EasyOutput import Colors, Success_Message

Success_Message("EasyOutput", color=Colors.Green)

# As of v0.1.1 you can change the color of the title and highlight!
from EasyOutput.EasyOutput import Colors, Highlights, Success_Message

Success_Message("EasyOutput", color=Colors.Green, highlight=Highlights.Blue, title_color=Colors.White)


```

In reality this is nothing special and just simply for my lazy use. You could easily make these yourself by doing:

```py
from colorama import Fore, Style

def Success(message):
    print(f"{Fore.GREEN + Style.BRIGHT}Success{Style.RESET_ALL}: {message}")

print(f"{Fore.GREEN + Style.BRIGHT}Success{Style.RESET_ALL}: {message}")
# and calling it like so

Success("Your Success Message")
```

If you would rather save time instead, you can always download it by entering **pip install EasyOutput** into your terminal!

## Important Information 🥇

**[colorama](https://pypi.org/project/colorama/) and It's creator has done all heavy lifting here please show him some love!** \
 **[Jonathan Hartley](https://github.com/tartley)**\
 **[colorama repo](https://github.com/tartley/colorama)**

## PYPI

[EasyOutput](https://pypi.org/project/EasyOutput/)

Badges from: [Shields.io](https://shields.io/badges)

<details>
<summary>Change-Log 📝</summary>

<details>
<summary>v0.0.1</summary>

    ADDED
    - Success Message
    - Error Message
    - Wait Message

</details>

<details>
<summary>v0.0.2</summary>
    
    ADDED
    - Connection Success Message
    - Connection Error Message

</details>

<details>
<summary>v0.0.3</summary>
    
    ADDED
    - Function Notes

    FIXED
    - Small Success Message Bugs

</details>

<details>
<summary>v0.0.4</summary>
    
    ADDED
    - Info Mesage
    - Note Message
</details>

<details>
<summary>v0.0.5</summary>

    ADDED
    - Title Print

    FIXED
    - Calling issues

</details>

<details>
<summary>v0.0.6</summary>

    ADDED
    - REDACTED Message

    REMOVED
    - Usless Classes

</details>

<details>
<summary>v0.0.7</summary>
    
    REMOVED
    - Wait Message

    ADDED
    - Warning Message

    FIXED
    - imports

</details>

<details>
<summary>v0.0.7.1</summary>

    FIXED
    -

</details>

<details>
<summary>v0.0.8</summary>

    ADDED
    - Highlight Message Option!

</details>

<details>
<summary>v0.0.8.1</summary>

    FIXED
    - Leaving all functions at the bottom of the file... IM SORRY

</details>

<details>
<summary>v0.0.9</summary>

    FIXED
    - Optioanl Highlight!

</details>

<details>
<summary>v0.0.9.1</summary>

    FIXED
    - Info message oddly popping up after every function

</details>

<details>
<summary>v0.1.0</summary>

    ADDED
    - Colored text option
    - Custom Message
    - Show all colors function

</details>

<details>
<summary>v0.1.1</summary>

    ADDED
    - Highlight any color!
    - Ability to color any part of the message!

    FIXED
    - Highlights

</details>

</details>
