llist


Namellist JSON
Version 0.7.1 PyPI version JSON
download
home_pagehttps://github.com/ajakubek/python-llist
SummaryLinked list data structures for Python
upload_time2021-04-26 23:37:00
maintainer
docs_urlhttps://pythonhosted.org/llist/
authorAdam Jakubek, Rafał Gałczyński
requires_python
licenseMIT
keywords linked list
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            llist - linked lists for CPython
================================

llist is an extension module for CPython providing basic linked list
data structures.
Collections implemented in the llist 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 significantly faster than
collections.deque or standard Python lists.

This extension requires CPython 2.5 or newer (3.x is supported).
If you are looking for an implementation of linked lists in pure Python,
visit http://github.com/rgsoda/pypy-llist/
The pypy-llist module has the same API as this extension, but is
significantly slower in CPython.

Currently llist 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:
https://ajakubek.github.io/python-llist/index.html

To install this package, either run "pip install llist",
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/ajakubek/python-llist/

Bugs can be reported at:
https://github.com/ajakubek/python-llist/issues

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

[![Build Status](https://travis-ci.org/ajakubek/python-llist.svg?branch=master)](https://travis-ci.org/ajakubek/python-llist)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ajakubek/python-llist",
    "name": "llist",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/llist/",
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "linked list",
    "author": "Adam Jakubek, Rafa\u0142 Ga\u0142czy\u0144ski",
    "author_email": "ajakubek@gmail.com, rafal.galczynski@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/fe/27/74fd16961c183bee40ba510d42b1b2c90f627713d26bdda09e8d7594ef37/llist-0.7.1.tar.gz",
    "platform": "",
    "description": "llist - linked lists for CPython\n================================\n\nllist is an extension module for CPython providing basic linked list\ndata structures.\nCollections implemented in the llist 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 significantly faster than\ncollections.deque or standard Python lists.\n\nThis extension requires CPython 2.5 or newer (3.x is supported).\nIf you are looking for an implementation of linked lists in pure Python,\nvisit http://github.com/rgsoda/pypy-llist/\nThe pypy-llist module has the same API as this extension, but is\nsignificantly slower in CPython.\n\nCurrently llist 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:\nhttps://ajakubek.github.io/python-llist/index.html\n\nTo install this package, either run \"pip install llist\",\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/ajakubek/python-llist/\n\nBugs can be reported at:\nhttps://github.com/ajakubek/python-llist/issues\n\nThis software is distributed under the MIT license.\nPlease see the LICENSE file included in the package for details.\n\n[![Build Status](https://travis-ci.org/ajakubek/python-llist.svg?branch=master)](https://travis-ci.org/ajakubek/python-llist)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Linked list data structures for Python",
    "version": "0.7.1",
    "project_urls": {
        "Download": "http://pypi.python.org/pypi/llist/0.7.1",
        "Homepage": "https://github.com/ajakubek/python-llist"
    },
    "split_keywords": [
        "linked",
        "list"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe2774fd16961c183bee40ba510d42b1b2c90f627713d26bdda09e8d7594ef37",
                "md5": "33238b9183b3be6073b402547ef5ab6c",
                "sha256": "6f73a120136897a0bce61c202188f4f3891d9f70aa906d21fc1ee1cf43659eca"
            },
            "downloads": -1,
            "filename": "llist-0.7.1.tar.gz",
            "has_sig": false,
            "md5_digest": "33238b9183b3be6073b402547ef5ab6c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 42979,
            "upload_time": "2021-04-26T23:37:00",
            "upload_time_iso_8601": "2021-04-26T23:37:00.588520Z",
            "url": "https://files.pythonhosted.org/packages/fe/27/74fd16961c183bee40ba510d42b1b2c90f627713d26bdda09e8d7594ef37/llist-0.7.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2021-04-26 23:37:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ajakubek",
    "github_project": "python-llist",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "llist"
}
        
Elapsed time: 0.14746s