Metadata-Version: 2.1
Name: listset
Version: 0.1.0
Summary: remove duplicates from lists
Home-page: https://github.com/jmsv/listset
Author: James Vickery
Author-email: dev@jamesvickery.net
License: UNKNOWN
Project-URL: Source, https://github.com/jmsv/listset
Project-URL: Bug Reports, https://github.com/jmsv/listset/issues
Keywords: list set duplicates listset
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=2.6, !=3.0.*, !=3.1.*, <4
Description-Content-Type: text/markdown

# listset

remove duplicates from lists

## Getting Started

### Install

```bash
pip install listset
```

### Import and Use

```python
>>> from listset import listset

>>> listset([1, 2, 3, 4, 4, 4])
[1, 2, 3, 4]

>>> listset(['apple', 'orange', 'banana', 'apple', 'apple'])
['apple', 'orange', 'banana']
```

the possibilities are endless :cactus:


