{"id":28469827,"url":"https://github.com/answerdotai/tinyredis","last_synced_at":"2025-06-26T16:33:22.832Z","repository":{"id":246735560,"uuid":"822335879","full_name":"AnswerDotAI/tinyredis","owner":"AnswerDotAI","description":"Experimental minimalist API for redis","archived":false,"fork":false,"pushed_at":"2024-12-21T23:31:09.000Z","size":12,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-06-26T11:13:28.831Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AnswerDotAI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":"2024-07-01T00:11:28.000Z","updated_at":"2025-06-03T05:27:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"c0b9afd5-0226-4f23-812d-fe073e854db0","html_url":"https://github.com/AnswerDotAI/tinyredis","commit_stats":null,"previous_names":["answerdotai/tinyredis"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AnswerDotAI/tinyredis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Ftinyredis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Ftinyredis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Ftinyredis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Ftinyredis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AnswerDotAI","download_url":"https://codeload.github.com/AnswerDotAI/tinyredis/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnswerDotAI%2Ftinyredis/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262102366,"owners_count":23259246,"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":"2025-06-07T09:08:47.847Z","updated_at":"2025-06-26T16:33:22.823Z","avatar_url":"https://github.com/AnswerDotAI.png","language":"Python","readme":"# tinyredis\n\n\u003e *Experimental minimalist API for redis*\n\n    pip install tinyredis\n\n## Sample\n\n```python\nimport redis\nfrom tinyredis import TinyRedis\nfrom dataclasses import dataclass\n\n@dataclass\nclass Todo: id:int; title:str; done:bool=False\n\ntodos = TinyRedis(redis.from_url(YOUR_URL), Todo)\n\ntodo = todos.insert(Todo(1, \"Create README example\"))\n# or: todo = todos.insert(title=\"Create README example\")\n# if you don't pass `id`, a uuid4 id will be created for you\nprint(todos())  # Prints all todos\ntodo.done = True\ntodos.update(todo)\nprint(todos[todo.id])\ntodos.delete(todo.id)\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanswerdotai%2Ftinyredis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanswerdotai%2Ftinyredis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanswerdotai%2Ftinyredis/lists"}