Metadata-Version: 2.1
Name: Tulib
Version: 0.1.0
Summary: A small Python library with some useful tools.
Home-page: https://medium-multiply.readthedocs.io/
Author: Matthew Schlauderaff
Author-email: matthew.schlauderaff@gmail.com
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
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: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Tulib

A small Python library with some useful tools.



### Installation

```

pip install tulib

```



### Get started

How to turn a string into a list of words in this lib:



```Python

from Tulib import W2L



# Call the W2L method

result = W2L("Hello there, welcome to Tulib!")

```
