A minimalistic Count-min Sketch for Python
Project description
CountMinSketch
==============
This is a minimalistic
`Count-min Sketch <http://en.wikipedia.org/wiki/Count%E2%80%93min_sketch>`_
for Python, featuring some cool things like:
- Being able to count anything that is hash-able by python (numbers, strings, tuples, inmutables, duck-typeds, etc.).
- Tests
- No dependencies
- No foreign languages, just 100% python.
This software was written by Rafael Carrascosa, you can contact me at
rafacarrascosa on gmail.
Usage
=====
.. code-block:: python
from countminsketch import CountMinSketch
sketch = CountMinSketch(1000, 10) # table size=1000, hash functions=10
sketch.add("oh yeah")
sketch.add(tuple())
sketch.add(1, value=123)
print sketch["oh yeah"] # prints 1
print sketch[tuple()] # prints 1
print sketch[1] # prints 123
print sketch["non-existent"] # prints 0
Install
=======
CountMinSketch is on PyPI, so you can install it with
pip install countminsketch
License
=======
BSD 3-clause, see the LICENSE file.
==============
This is a minimalistic
`Count-min Sketch <http://en.wikipedia.org/wiki/Count%E2%80%93min_sketch>`_
for Python, featuring some cool things like:
- Being able to count anything that is hash-able by python (numbers, strings, tuples, inmutables, duck-typeds, etc.).
- Tests
- No dependencies
- No foreign languages, just 100% python.
This software was written by Rafael Carrascosa, you can contact me at
rafacarrascosa on gmail.
Usage
=====
.. code-block:: python
from countminsketch import CountMinSketch
sketch = CountMinSketch(1000, 10) # table size=1000, hash functions=10
sketch.add("oh yeah")
sketch.add(tuple())
sketch.add(1, value=123)
print sketch["oh yeah"] # prints 1
print sketch[tuple()] # prints 1
print sketch[1] # prints 123
print sketch["non-existent"] # prints 0
Install
=======
CountMinSketch is on PyPI, so you can install it with
pip install countminsketch
License
=======
BSD 3-clause, see the LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
countminsketch-0.2.tar.gz
(2.8 kB
view details)
File details
Details for the file countminsketch-0.2.tar.gz
.
File metadata
- Download URL: countminsketch-0.2.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df99c3e890f52382b63c8c0ee7b122375253d6d71ea4f30c7f9cd781be6b258a |
|
MD5 | ac790e0f22cc2a16a73f06d78c897394 |
|
BLAKE2b-256 | 9999900137829a489f1e0855d5c6c6813c109a5281fee7665b6e740f7cdee6bf |