https://github.com/jmsv/listset
remove duplicates from lists
https://github.com/jmsv/listset
duplicates list listset set
Last synced: 9 months ago
JSON representation
remove duplicates from lists
- Host: GitHub
- URL: https://github.com/jmsv/listset
- Owner: jmsv
- License: mit
- Created: 2018-06-17T00:45:56.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-11T13:08:32.000Z (over 7 years ago)
- Last Synced: 2025-09-22T16:45:10.504Z (10 months ago)
- Topics: duplicates, list, listset, set
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# listset
remove duplicates from lists
[](https://badge.fury.io/py/listset)
[](https://pypi.python.org/pypi/listset)
[](https://pypi.python.org/pypi/listset)
[](https://pypistats.org/packages/listset)
## 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: