#CountMinSketch
==============
This is a pure-Python count-min sketch. It's pretty fast and accurate. Try it out!
##Usage
```python
>>> cms = CountMinSketch(200, 500)
>>> cms['foo']
0
>>> cms['foo'] += 5
>>> cms['foo']
5
```
==============
This is a pure-Python count-min sketch. It's pretty fast and accurate. Try it out!
##Usage
```python
>>> cms = CountMinSketch(200, 500)
>>> cms['foo']
0
>>> cms['foo'] += 5
>>> cms['foo']
5
```
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file count_min_sketch-3.0.4.tar.gz.
File metadata
- Download URL: count_min_sketch-3.0.4.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67c21d5105a67283739767b28fcddf8ae621fd0224c6243c90c8f3af23f2d16f
|
|
| MD5 |
a861dd6b74b1fc0594254a155a3619d3
|
|
| BLAKE2b-256 |
bf53affad6de3267ec9187965304ad184ff3aa6c1b13318b82aa84a6c6f5c439
|