Metadata-Version: 2.1
Name: bloomy
Version: 0.0.2
Summary: An efficient and scalable bloom filter module built in pure python.
Home-page: https://github.com/shmam/bloomy
Author: Sam Crochet
Author-email: samuel.d.crochet@gmail.com
License: UNKNOWN
Description: 
        #### Bloom Filter
        \\bloom **fil**-ter\\
        _**Noun**_
        1. Space-efficient probabilistic data structure that is used to test whether an element is a member of a set. 
        2. A fun side project!
        
        ### About bloomy
        Bloomy is a bloom filter module designed to be both lightweight and scalable. Bloomy does not use any external libraries, and scales internally to match scenarios. Bloomy also designed to reduce the rate of false positives. This is done my applying md5 hashing and bit rotation to generate k unique 8 byte hash values, and then using golden ratio compression for even distribution.  
        
        ### Advantages of bloom filters 
        - Uses bit arrays to store the presence of items. This significantly reduces the in memory storage. 
        - Implements binary and bit masking operations. This reduces the runtime of add and contains operations to practically O(1). 
        - Raw types can be used. 
        
        ---
        ### Operations 	
        
        #### `___init__(m,[array of additional hash functions])`
        			 params: (optional) size of bit array, (optional) additional hash functions 
        			 return: bloomFilter object 
        Create a bit array `bits` with m bits cleared to 0, and saves k number of hash functions. M has a default of 1000 and the filter comes with five unique default hash functions. 
        
        #### `add(value)`
        			 params: object to add to the bloomFilter set
        			 return: None
        Takes in a value and hashes it k times to obtain a list of indexes. For each index obtained by a given hash function, set the value in the bit array `bits` to 1. 
        
        #### `__contains__(value)` 
        			 params: object to search for in the set 
        			 return: True/False indicating presence in the set
        Takes in a value and hashes it k times to obtain a list of unique indexes. Create a bit mask with the initial value 0. For each index obtained by a hash function, set that index in the mask 1. Perform the following binary operation `bits AND mask`, and if the value performed by that operation equals the mask, we can conclude that the value _**probably**_ exists in the bloom filter. 
        
        
        #### `addHashFunction(fn)`
        			 params: additional hash function to add
        			 return: None
        Takes in a function as a parameter, and adds this function to the existing list of hash functions used by the bloom filter. The function `fn` has to take the form `fn(value)` where `value` is the item to hash, and the function must return an integer between 0 and the upper index bound. All other following parameters must have default values. 
        
        The function also has to be able to provide consistent values for the given input. There is no randomization involved, rather this is a pure key transformation function. Any compression function may be used, as long as it limits the key space within the upper bound of the bit array. 
        
        #### `fingerprint(value)`
        			 params: value to inspect fingerprint
        			 return: array (len = k) of hashed values 
        Takes in a value and returns an array of the hashed values created by the list of hash functions. Used to debug and inspect the behavior of the hashing mechanism. 
        
        #### `mask([ints])`
        			 params: integer values to use to create bit mask
        			 return: integer bit mask
        Creates a bit masked integer with 1 in the indexes specified by the parameter integer array. 
        
        ---
        ### Example (k = 3, m = 12)
        ```
        0. constructor 
        
        bit array: 
        	--- --- --- --- --- --- --- --- --- --- --- --- --- 
         | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ...
        	--- --- --- --- --- --- --- --- --- --- --- --- --- 
        
        1. add("Hello world") => 00, 03, 04
        
        bit array: 
        	--- --- --- --- --- --- --- --- --- --- --- --- --- 
         | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ...
        	--- --- --- --- --- --- --- --- --- --- --- --- --- 
        
        2. contains("Hello World") => 00,03,04 
        
        bit array: 
        	--- --- --- --- --- --- --- --- --- --- --- --- --- 
         | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ...
        	--- --- --- --- --- --- --- --- --- --- --- --- --- 
        	 ||          ||  ||
        	 ||==========||==||=================> 1,1,1 = True 
        
        3. contains("java is the best") => 02,03,07 
        
        bit array: 
        	--- --- --- --- --- --- --- --- --- --- --- --- --- 
         | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ...
        	--- --- --- --- --- --- --- --- --- --- --- --- --- 
        					 ||  ||              ||
        					 ||==||==============||=====> 0,1,0 = False
        ```
        
        ### Thank you!! 
        Thank you for checking this out! Please feel free to reach out via email [sdcroche@ncsu.edu](mailto:sdcroche@ncsu.edu), or twitter [@shmam_](https://twitter.com/shmam_)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
