{"id":13460203,"url":"https://github.com/coleifer/walrus","last_synced_at":"2025-04-29T21:23:22.322Z","repository":{"id":25053858,"uuid":"28473847","full_name":"coleifer/walrus","owner":"coleifer","description":"Lightweight Python utilities for working with Redis","archived":false,"fork":false,"pushed_at":"2024-10-15T14:13:07.000Z","size":614,"stargazers_count":1172,"open_issues_count":0,"forks_count":91,"subscribers_count":26,"default_branch":"master","last_synced_at":"2025-04-29T17:47:16.406Z","etag":null,"topics":["autocomplete","database","full-text-search","orm","python","redis"],"latest_commit_sha":null,"homepage":"https://walrus.readthedocs.org/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"chrisumbel/thirty-two","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coleifer.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/contributing.rst","funding":null,"license":"LICENSE","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":"2014-12-25T06:54:09.000Z","updated_at":"2025-04-21T13:49:26.000Z","dependencies_parsed_at":"2023-01-14T02:03:12.711Z","dependency_job_id":"6af0dbb5-590d-4ef3-bb45-a64aae3f4e35","html_url":"https://github.com/coleifer/walrus","commit_stats":{"total_commits":346,"total_committers":20,"mean_commits":17.3,"dds":0.08670520231213874,"last_synced_commit":"da30ef3b6de9d7f1d59c8380da0a9e59d15ebd6d"},"previous_names":[],"tags_count":38,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coleifer%2Fwalrus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coleifer%2Fwalrus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coleifer%2Fwalrus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coleifer%2Fwalrus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coleifer","download_url":"https://codeload.github.com/coleifer/walrus/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251583972,"owners_count":21612937,"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":["autocomplete","database","full-text-search","orm","python","redis"],"created_at":"2024-07-31T10:00:37.295Z","updated_at":"2025-04-29T21:23:22.300Z","avatar_url":"https://github.com/coleifer.png","language":"Python","readme":"## Walrus\n\n![](http://media.charlesleifer.com/blog/photos/walrus-logo-0.png)\n\nLightweight Python utilities for working with [Redis](http://redis.io).\n\nThe purpose of [walrus](https://github.com/coleifer/walrus) is to make working\nwith Redis in Python a little easier. Rather than ask you to learn a new\nlibrary, walrus subclasses and extends the popular `redis-py` client, allowing\nit to be used as a drop-in replacement. In addition to all the features in\n`redis-py`, walrus adds support for some newer commands, including full support\nfor streams and consumer groups.\n\nwalrus consists of:\n\n* Pythonic container classes for the Redis data-types:\n    * [Hash](https://walrus.readthedocs.io/en/latest/containers.html#hashes)\n    * [List](https://walrus.readthedocs.io/en/latest/containers.html#lists)\n    * [Set](https://walrus.readthedocs.io/en/latest/containers.html#sets)\n    * [Sorted Set](https://walrus.readthedocs.io/en/latest/containers.html#sorted-sets-zset)\n    * [HyperLogLog](https://walrus.readthedocs.io/en/latest/containers.html#hyperloglog)\n    * [Array](https://walrus.readthedocs.io/en/latest/containers.html#arrays) (custom type)\n    * [BitField](https://walrus.readthedocs.io/en/latest/containers.html#bitfield)\n    * [BloomFilter](https://walrus.readthedocs.io/en/latest/containers.html#bloomfilter)\n    * [**Streams**](https://walrus.readthedocs.io/en/latest/streams.html)\n* [Autocomplete](https://walrus.readthedocs.io/en/latest/autocomplete.html)\n* [Cache](https://walrus.readthedocs.io/en/latest/cache.html) implementation that exposes several decorators for caching function and method calls.\n* [Full-text search](https://walrus.readthedocs.io/en/latest/full-text-search.html) supporting set operations.\n* [Graph store](https://walrus.readthedocs.io/en/latest/graph.html)\n* [Rate-limiting](https://walrus.readthedocs.io/en/latest/rate-limit.html)\n* [Locking](https://walrus.readthedocs.io/en/latest/api.html#walrus.Lock)\n* **Experimental** active-record style [Models](https://walrus.readthedocs.io/en/latest/models.html) that support persisting structured information and performing complex queries using secondary indexes.\n* More? [More!](https://walrus.readthedocs.io)\n\n### Models\n\nPersistent structures implemented on top of Hashes. Supports secondary indexes to allow filtering on equality, inequality, ranges, less/greater-than, and a basic full-text search index. The full-text search features a boolean search query parser, porter stemmer, stop-word filtering, and optional double-metaphone implementation.\n\n### Found a bug?\n\n![](http://media.charlesleifer.com/blog/photos/p1420743625.21.png)\n\nPlease open a [github issue](https://github.com/coleifer/walrus/issues/new) and I will try my best to fix it!\n\n### Alternative Backends\n\nWalrus also can integrate with the Redis-like databases [rlite](https://github.com/seppo0010/rlite), [ledis](http://ledisdb.io/), and [vedis](http://vedis.symisc.net). Check the [documentation](https://walrus.readthedocs.io/en/latest/alt-backends.html) for more details.\n","funding_links":[],"categories":["Python","语言资源库","ODM, ORM, Active Record"],"sub_categories":["python"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoleifer%2Fwalrus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoleifer%2Fwalrus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoleifer%2Fwalrus/lists"}