pyllist


Namepyllist JSON
Version 0.3 PyPI version JSON
download
home_pagehttps://github.com/rgsoda/pypy-llist
SummaryLinked list data structures (in pure Python)
upload_time2017-11-18 20:04:38
maintainer
docs_urlhttps://pythonhosted.org/pyllist/
authorRafał Gałczyński <rafal.galczynski@gmail.com>, Adam Jakubek <ajakubek@gmail.com>, Oleksandr Pryymak
requires_python
licenseMIT
keywords linked list
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pyllist - linked lists for Python
=================================

pyllist is a Python module providing basic linked list data structures.
Collections implemented in the pyllist module perform well in problems
which rely on fast insertions and/or deletions of elements in
the middle of a sequence.
For this kind of workload, they can be faster than collections.deque
or standard Python lists.

This extension requires Python 2.x or 3.x. It should work with any
implementation (tested with CPython and PyPy).
Note however, that for CPython there is a much faster C extension
module with the same API at http://github.com/ajakubek/python-llist/

Currently pyllist provides the following types of linked lists:
 - dllist - a doubly linked list
 - sllist - a singly linked list

Full documentation of these classes is available at:
http://packages.python.org/pyllist/

To install this package, either run "pip install pyllist",
or download it manually from http://pypi.python.org/pypi
then unpack the sources and compile them with "python setup.py install".

The most current development version is available at:
https://github.com/rgsoda/pypy-llist/

Bugs can be reported at:
https://github.com/rgsoda/pypy-llist/issues

This software is distributed under the MIT license.
Please see the LICENSE file included in the package for details.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rgsoda/pypy-llist",
    "name": "pyllist",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/pyllist/",
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "linked list",
    "author": "Rafa\u0142 Ga\u0142czy\u0144ski <rafal.galczynski@gmail.com>, Adam Jakubek <ajakubek@gmail.com>, Oleksandr Pryymak",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/d6/da/68160735f958f76bba1daaaef86fd831230c19454fb6d8721df93ebe59b3/pyllist-0.3.tar.gz",
    "platform": "",
    "description": "pyllist - linked lists for Python\n=================================\n\npyllist is a Python module providing basic linked list data structures.\nCollections implemented in the pyllist module perform well in problems\nwhich rely on fast insertions and/or deletions of elements in\nthe middle of a sequence.\nFor this kind of workload, they can be faster than collections.deque\nor standard Python lists.\n\nThis extension requires Python 2.x or 3.x. It should work with any\nimplementation (tested with CPython and PyPy).\nNote however, that for CPython there is a much faster C extension\nmodule with the same API at http://github.com/ajakubek/python-llist/\n\nCurrently pyllist provides the following types of linked lists:\n - dllist - a doubly linked list\n - sllist - a singly linked list\n\nFull documentation of these classes is available at:\nhttp://packages.python.org/pyllist/\n\nTo install this package, either run \"pip install pyllist\",\nor download it manually from http://pypi.python.org/pypi\nthen unpack the sources and compile them with \"python setup.py install\".\n\nThe most current development version is available at:\nhttps://github.com/rgsoda/pypy-llist/\n\nBugs can be reported at:\nhttps://github.com/rgsoda/pypy-llist/issues\n\nThis software is distributed under the MIT license.\nPlease see the LICENSE file included in the package for details.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Linked list data structures (in pure Python)",
    "version": "0.3",
    "project_urls": {
        "Download": "http://pypi.python.org/pypi/pyllist/0.3",
        "Homepage": "https://github.com/rgsoda/pypy-llist"
    },
    "split_keywords": [
        "linked",
        "list"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6da68160735f958f76bba1daaaef86fd831230c19454fb6d8721df93ebe59b3",
                "md5": "2c52ae53267f0899e798a66f50f5c6e5",
                "sha256": "6afd58ab1bccfa948da78dc9bfb5915c38bb280a19e68926c4a9d1c9e9cac45f"
            },
            "downloads": -1,
            "filename": "pyllist-0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "2c52ae53267f0899e798a66f50f5c6e5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 19598,
            "upload_time": "2017-11-18T20:04:38",
            "upload_time_iso_8601": "2017-11-18T20:04:38.553125Z",
            "url": "https://files.pythonhosted.org/packages/d6/da/68160735f958f76bba1daaaef86fd831230c19454fb6d8721df93ebe59b3/pyllist-0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2017-11-18 20:04:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rgsoda",
    "github_project": "pypy-llist",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pyllist"
}
        
Elapsed time: 0.11513s