Metadata-Version: 2.1
Name: SupremeUtils
Version: 0.0.2
Summary: A package full of great utility functions
Home-page: https://github.com/SystemFalll/SupremeUtils
Author: SystemFall
Author-email: systemfallbusiness@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/SystemFalll/SupremeUtils/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# SupremeUtils

A python package capable of doing some useful things to help you on your code

## Installing

Python 3.8 or higher is required
Currently avaliable at [Pypi](https://pypi.org/project/SupremeUtils/)

```
pip install SupremeUtils
```

## Usage

### Examples

`test.py`
```
# Import package
from SupremeUtils import Color

# Create terminal object
terminal = Color()

terminal.error('This is an error')
terminal.warning('This is an warning')
terminal.add('This is an add')
terminal.minus('This is an minus')
terminal.info('This is an info')

```
*Written by SystemFall*


