Metadata-Version: 2.4
Name: pycollectionsx
Version: 0.1.0
Summary: Extended data-structure toolkit — PriorityQueue, Trie, LRUCache, etc.
Author: PyLib Contributors
License: MIT
Keywords: data-structures,collections,trie,cache
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# 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

