Metadata-Version: 2.1
Name: pyutils-cr
Version: 0.0.2
Summary: A simple package that contains extremely useful utilities.
Home-page: https://github.com/GoodMusic8596/pythonutilities
Author: Crow Randalf
Author-email: somethings8596@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

[Discord Server](https://discord.gg/tb4XFNA9xK)

# About
---

Pyutils is a package that contains many different utilities ranging from getting source codes, to dumping output logs. This package simplifies things down the one line of code to be executed.

**[Pypi Page](https://pypi.org/project/pyutils-cr/)**

**[Github Page](https://github.com/GoodMusic8596/pythonutilities)**

# Examples
---

Return complete system information
```py
import pyutilities
overview = pyutilities.ov()
print(overview.complete())
```
Get source code
```py
import pyutilities as pyutil
print(pyutil.method_source(pyutil.method_source()))
#Use file_source instead of method_source for files
```

Dump output of python script
```py
import pyutilities as pyutil
pyutil.log("foo.py","dump.txt")
```

