Metadata-Version: 2.1
Name: pythontk
Version: 0.6.0
Summary: *pythontk is a collection of backend utilities for Python.*
Home-page: https://github.com/m3trik/pythontk
Author: Ryan Simpson
Author-email: m3trik@outlook.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

### PYTHONTK (Python Toolkit)

---
<!-- short_description_start -->
*pythontk is a collection of backend utilities for Python.*
<!-- short_description_end -->

### Installation:

###### 

To install:
Add the `pythontk` folder to a directory on your python path, or
install via pip in a command line window using:
```
python -m pip install pythontk
```

### Example use-case:
###### Import the class `Iter` from the package.
###### As the name suggests, the class `Iter` holds the package's iterable related functions.
```python
from pythontk import Iter
Iter.filterList([0, 1, 2, 3, 2], [1, 2, 3], 2) #returns: [1, 3]
```
###### You can also import a function directly.
```python
from pythontk.Iter import filterDict
filterDict({1:'1', 'two':2, 3:'three'}, exc='t*', keys=True) #returns: {1: '1', 3: 'three'}
```
