Metadata-Version: 2.1
Name: PowerWrapper
Version: 0.0.7
Summary: A powerful library that wraps advanced functions.
Home-page: 
Author: SapphireKR
Author-email: sapphirekr11@protonmail.com
License: MIT
Keywords: python,wrapper
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# PowerWrapper: A powerful library that wraps mid-advanced functions

### Maths Module

#### Importing the Module:
```py
# Importing the module
from PowerWrapper import maths
m = maths()
```
Usage:
```py
# Mean
print(m.getMean([5, 10, 10, 15]))

# Median
print(m.getMedian([5, 10, 10, 15]))

# Mode
print(m.getMode([5, 10, 10, 15]))

# Square Root
print(m.squareRoot(25))

# Modulus
print(m.getMod(10, 6))
```

### Error module
```py
# Importing the module
from PowerWrapper import errors
e = errors()
```
Usage:
```py
# GUI Information Box
e.showInfo("title", "text")

# GUI Warning Box
e.showWarning("title", "text")

# GUI Error Box
e.showError("title", "text")
```

### System module
```py
# Importing the module
from PowerWrapper import system
s = system()
```
Usage:
```py
# Installing External Dependencies (with pip)
s.installDependency('libraryName')

# Creating a File
s.createFile('createFileDirectory')

# Moving/Renaming a File
s.moveFile('fileDirectory', 'newFileDirectory')

# Removing/Deleting a File
s.removeFile('fileDirectory')

# Executing/Running a File/Program
s.executeFile('fileDirectory')

# Running a Command in the Python Shell
s.runCommand('command')

# Running a Command in Command Prompt
s.runCommandPrompt('command')

# Running a Command in PowerShell
s.runPowerShell('command')
```

Updated the readme file, to remove inaccurate methods of using the library.
