Metadata-Version: 2.1
Name: helpu
Version: 0.0.102
Summary: Class containing super convenience methods.
Home-page: https://github.com/Noctsol/lib-py-helpu
Author: Noctsol
Author-email: noctsol@pm.me
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# lib-py-helpu (not stable right now)
Phonetic - *| help juː |*

Library on PYPI that contains some very lazy but safe methods.
It's a tradition I wanted to follow my very first development team. Miss you guys.

I did document this, but I'm not sure how to use auto docs on Python, so this is really just for my usage for now.
I highly doubt anyone would really want to use this besides me.

Use case example:
```
import helpu

data_lists = [["header1", "header2"], ["value1", "value3"]]
file_path = "C:\yourfile.csv"

helpu.write_to_csv(file_path, data_lists)
```

Examples of functions:
```
def write_to_csv(self, file_path, lists):

def timestamp(self, formatting="%Y%m%d"):
```


