Metadata-Version: 2.1
Name: EasyOutput
Version: 0.0.3
Summary: Colored messages in the palm of your hand
Author: FrankAustin
Author-email: <frankaustindev808@gmail.com>
Keywords: python,colored print,error message,success message,colored message
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama


# Easy Output 



# Information

EasyOutput consitis 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! 😄



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