Metadata-Version: 2.3
Name: EasyOutput
Version: 0.0.7
Summary: Colored messages in the palm of your hand
Project-URL: Homepage, https://github.com/FrankAustin808/EasyOut/
Project-URL: Issues, https://github.com/FrankAustin808/EasyOut/issues/new/choose
Author-email: FrankAustin <frankaustindev808@gmail.com>
License-File: LICENSE
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# Easy Output 

# Information
**EasyOutput** consists of easy colored print options without the hassle of doing
```py
print(f"{Fore.GREEN + Style.BRIGHT}Success{Style.RESET_ALL}: Your Message")
```

In reality this is nothing special and just simply for my lazy use. You could easily make these yourself by doing
```py
def Success(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!\
Feel free to use this in any way you like, all I ask is that you show me your project when finished! 😄

[Request a feature](https://github.com/FrankAustin808/EasyOut/issues/new/choose)\
[Report an issue](https://github.com/FrankAustin808/EasyOut/issues/new/choose)

**Updating as much as I can!**
# Functions

### Success
**Use:**
```py
Success("EasyOutput")

```
**Shows:**

Success: EasyOutput

### Successful_Connection
**Use:**
```py
Successful_Connection("EasyOutput")

```
**Shows:**

Successful Connection: EasyOutput

### Error
**Use:**
```py
Error("EasyOutput")

```
**Shows:**

Error: EasyOutput

### Connection_Error
**Use:**
```py
Connection_Error("EasyOutput")

```
**Shows:**

Connection Error: EasyOutput

### Note
**Use:**
```py
Note("EasyOutput")

```
**Shows:**

Note: EasyOutput

### Wait
**Use:**
```py
Wait("EasyOutput")

```
**Shows:**

Wait: EasyOutput

### Title
**Use:**
```py
Title("EasyOutput")

```
**Shows:**

=== EasyOutput === 

## PYPI

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