Metadata-Version: 2.1
Name: gatherunique
Version: 0.1.0
Summary: Simple, unique list gatherer, with *args for passable blacklist check and optional list_in for automated sorting against blacklist/s
Home-page: https://github.com/dpazavalos/datatypes/tree/master/gatherunique
Author: Daniel Paz Avalos
Author-email: dpazavalos@protonmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Gather Unique

Simple, unique list gatherer, with *args for passable blacklist check and optional list_in for 
automated sorting against blacklist/s

##  Installation

```
pip install gather_unique
```

##  Usage

```python
from gatherunique import GatherUnique
gather = GatherUnique()
head = "Header to display"

# Unique list from stdin, no header
uniq1 = gather.run()

# Unique list from stdin, with provided blacklist and header
uniq2 = gather.run(['1', '2', '3', '4', '5'], header=head )

# Unique list from list_in= against provided blacklist
uniq3 = gather.run(['1', '2', '3', '4', '5'], list_in=['6', '6', '1', '2'])
```

Note that args are considered blacklists by default. Use 'header=' and 'list_in=' to differentiate


