drop-duplicates-nested-list


Namedrop-duplicates-nested-list JSON
Version 0.10 PyPI version JSON
download
home_pagehttps://github.com/hansalemaos/drop_duplicates_nested_list
SummaryDrops duplicates from nested list
upload_time2022-12-29 09:05:07
maintainer
docs_urlNone
authorJohannes Fischer
requires_python
licenseMIT
keywords duplicates nested list
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Drops duplicates from nested list 

```python
$pip install drop-duplicates-nested-list

from drop_duplicates_nested_list import drop_duplicates
L = ['a', ['aa', 'a'] ,'a',['aa', 'a'] ,['bb', ['ccc', 'ddd'], 'ee', 'ff'], 'g', 'h',['bb', ['ccc', 'ddd'], 'ee', 'ff']]

print(drop_duplicates(L))
['a', ['aa', 'a'], ['bb', ['ccc', 'ddd'], 'ee', 'ff'], 'g', 'h']

```





            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hansalemaos/drop_duplicates_nested_list",
    "name": "drop-duplicates-nested-list",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "duplicates,nested,list",
    "author": "Johannes Fischer",
    "author_email": "<aulasparticularesdealemaosp@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/93/0f/a8347d2c35c4faadbcd55c5ebcb2f76c0c380e4596cbe79bb7c54896db34/drop_duplicates_nested_list-0.10.tar.gz",
    "platform": null,
    "description": "\n# Drops duplicates from nested list \n\n```python\n$pip install drop-duplicates-nested-list\n\nfrom drop_duplicates_nested_list import drop_duplicates\nL = ['a', ['aa', 'a'] ,'a',['aa', 'a'] ,['bb', ['ccc', 'ddd'], 'ee', 'ff'], 'g', 'h',['bb', ['ccc', 'ddd'], 'ee', 'ff']]\n\nprint(drop_duplicates(L))\n['a', ['aa', 'a'], ['bb', ['ccc', 'ddd'], 'ee', 'ff'], 'g', 'h']\n\n```\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Drops duplicates from nested list",
    "version": "0.10",
    "split_keywords": [
        "duplicates",
        "nested",
        "list"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "6cdc795faca58f55081838af4684698b",
                "sha256": "f424c9b47d59d017ee61256ac0f2897d09aa070478d56135b4a3325b5c60b67f"
            },
            "downloads": -1,
            "filename": "drop_duplicates_nested_list-0.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6cdc795faca58f55081838af4684698b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 4500,
            "upload_time": "2022-12-29T09:05:05",
            "upload_time_iso_8601": "2022-12-29T09:05:05.892772Z",
            "url": "https://files.pythonhosted.org/packages/75/5d/281b1c257d3ac37b7e8edeb33f709b882affd44d274b8b45d3132be44276/drop_duplicates_nested_list-0.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e7819ff5f89577bdb7dd0f9174c0e4d7",
                "sha256": "4c9a738e363e8f5a32ca99789868486929bd2f67d13dd80f59f1b6d84c13459a"
            },
            "downloads": -1,
            "filename": "drop_duplicates_nested_list-0.10.tar.gz",
            "has_sig": false,
            "md5_digest": "e7819ff5f89577bdb7dd0f9174c0e4d7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3018,
            "upload_time": "2022-12-29T09:05:07",
            "upload_time_iso_8601": "2022-12-29T09:05:07.314410Z",
            "url": "https://files.pythonhosted.org/packages/93/0f/a8347d2c35c4faadbcd55c5ebcb2f76c0c380e4596cbe79bb7c54896db34/drop_duplicates_nested_list-0.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-29 09:05:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "hansalemaos",
    "github_project": "drop_duplicates_nested_list",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "drop-duplicates-nested-list"
}
        
Elapsed time: 0.02182s