pycollectionsx


Namepycollectionsx JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryExtended data-structure toolkit — PriorityQueue, Trie, LRUCache, etc.
upload_time2025-11-06 11:24:15
maintainerNone
docs_urlNone
authorPyLib Contributors
requires_python>=3.8
licenseMIT
keywords data-structures collections trie cache
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pycollectionsx

Extended data-structure toolkit — PriorityQueue, Trie, LRUCache, etc.

## Installation

```bash
pip install pycollectionsx
```

## Usage

```python
from pycollectionsx import PriorityQueue, Trie, LRUCache

pq = PriorityQueue()
pq.push("item", 1)

trie = Trie()
trie.insert("hello")

cache = LRUCache(10)
cache.put("key", "value")
```

## License

MIT


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pycollectionsx",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "data-structures, collections, trie, cache",
    "author": "PyLib Contributors",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/f1/08/e27b7bda7a7d7ca49fe8fedd1a03fa08b4a83508361d15d0b5243328189c/pycollectionsx-0.1.0.tar.gz",
    "platform": null,
    "description": "# pycollectionsx\n\nExtended data-structure toolkit \u2014 PriorityQueue, Trie, LRUCache, etc.\n\n## Installation\n\n```bash\npip install pycollectionsx\n```\n\n## Usage\n\n```python\nfrom pycollectionsx import PriorityQueue, Trie, LRUCache\n\npq = PriorityQueue()\npq.push(\"item\", 1)\n\ntrie = Trie()\ntrie.insert(\"hello\")\n\ncache = LRUCache(10)\ncache.put(\"key\", \"value\")\n```\n\n## License\n\nMIT\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Extended data-structure toolkit \u2014 PriorityQueue, Trie, LRUCache, etc.",
    "version": "0.1.0",
    "project_urls": null,
    "split_keywords": [
        "data-structures",
        " collections",
        " trie",
        " cache"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f932990469c8f729e073f07dd62ae1aabac71933e1aca5af1b95772c80775ffb",
                "md5": "f5f2362400a6b1bf36e560501afe4e30",
                "sha256": "b3dbab15184efe494dc7906020f13e52a86cb479a71c930227560e0a550bdec6"
            },
            "downloads": -1,
            "filename": "pycollectionsx-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f5f2362400a6b1bf36e560501afe4e30",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 2798,
            "upload_time": "2025-11-06T11:24:14",
            "upload_time_iso_8601": "2025-11-06T11:24:14.433416Z",
            "url": "https://files.pythonhosted.org/packages/f9/32/990469c8f729e073f07dd62ae1aabac71933e1aca5af1b95772c80775ffb/pycollectionsx-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f108e27b7bda7a7d7ca49fe8fedd1a03fa08b4a83508361d15d0b5243328189c",
                "md5": "7f2718134e80486838f89cef78c6c17b",
                "sha256": "4df5a423ef1f0aa28b20b701da434125e260627bde1dc46a4b4fd5d7cab95632"
            },
            "downloads": -1,
            "filename": "pycollectionsx-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7f2718134e80486838f89cef78c6c17b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 2721,
            "upload_time": "2025-11-06T11:24:15",
            "upload_time_iso_8601": "2025-11-06T11:24:15.540377Z",
            "url": "https://files.pythonhosted.org/packages/f1/08/e27b7bda7a7d7ca49fe8fedd1a03fa08b4a83508361d15d0b5243328189c/pycollectionsx-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-06 11:24:15",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pycollectionsx"
}
        
Elapsed time: 2.84429s