{"id":21215300,"url":"https://github.com/romis2012/redis-bloomfilter","last_synced_at":"2025-03-15T00:24:35.109Z","repository":{"id":66141049,"uuid":"68592173","full_name":"romis2012/redis-bloomfilter","owner":"romis2012","description":"Redis-backed bloom filter","archived":false,"fork":false,"pushed_at":"2016-09-19T10:05:34.000Z","size":2,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-21T16:30:19.915Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/romis2012.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-09-19T09:47:53.000Z","updated_at":"2023-09-10T06:47:00.000Z","dependencies_parsed_at":"2023-03-18T14:20:37.775Z","dependency_job_id":null,"html_url":"https://github.com/romis2012/redis-bloomfilter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romis2012%2Fredis-bloomfilter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romis2012%2Fredis-bloomfilter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romis2012%2Fredis-bloomfilter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/romis2012%2Fredis-bloomfilter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/romis2012","download_url":"https://codeload.github.com/romis2012/redis-bloomfilter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243664499,"owners_count":20327483,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T21:36:43.511Z","updated_at":"2025-03-15T00:24:35.070Z","avatar_url":"https://github.com/romis2012.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# redis-bloomfilter\nSimple Redis-backed bloom filter.\nBased on [bloomfilter-redis](https://github.com/xupeng/bloomfilter-redis) project, \nbut has no limit to 2\u003csup\u003e32\u003c/sup\u003e-1 (512 MB) filter size (number of bits).\n\n\n## Example\n\n    from redis import Redis\n    from bloomfilter import BloomFilter\n    \n    urls = BloomFilter(connection=Redis(), key_prefix='bloom', num_bits=1024, num_hashes=8)\n    urls.add('https://www.google.ru/')\n    urls.add('http://yandex.ru/')\n    urls.add('https://www.python.org/')\n    urls.add('https://www.quora.com/')\n    urls.add('http://stackoverflow.com/')\n    \n    assert 'https://www.quora.com/' in urls\n    assert 'https://www.microsoft.com/' not in urls","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromis2012%2Fredis-bloomfilter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fromis2012%2Fredis-bloomfilter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromis2012%2Fredis-bloomfilter/lists"}