{"id":34758083,"url":"https://github.com/sourcepirate/pycache","last_synced_at":"2026-05-26T09:32:02.309Z","repository":{"id":36647218,"uuid":"40953506","full_name":"sourcepirate/pycache","owner":"sourcepirate","description":"A VeryFast in memory cache for Storing results of Already Computed Operations.","archived":false,"fork":false,"pushed_at":"2015-08-21T02:22:57.000Z","size":140,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-24T17:31:31.383Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sourcepirate.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}},"created_at":"2015-08-18T05:54:57.000Z","updated_at":"2015-08-20T09:57:39.000Z","dependencies_parsed_at":"2022-09-08T22:51:26.885Z","dependency_job_id":null,"html_url":"https://github.com/sourcepirate/pycache","commit_stats":null,"previous_names":["plasmashadow/pycache"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sourcepirate/pycache","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpycache","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpycache/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpycache/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpycache/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sourcepirate","download_url":"https://codeload.github.com/sourcepirate/pycache/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpycache/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33513919,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T03:12:49.672Z","status":"ssl_error","status_checked_at":"2026-05-26T03:12:47.976Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-12-25T05:48:02.704Z","updated_at":"2026-05-26T09:32:02.297Z","avatar_url":"https://github.com/sourcepirate.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"##PyCache\n\n\nPycache is a LRU Implemented with Linked Stack.\nhttps://en.wikipedia.org/wiki/Cache_algorithms#LRU\n\n[![Build Status](https://travis-ci.org/plasmashadow/pycache.svg?branch=master)](https://travis-ci.org/plasmashadow/pycache)\n\n###Installation:\n\n```\ngit clone https://github.com/plasmashadow/pycache\n\ncd pycache\n\npython setup.py install\n\n```\n\n###Usage:\n\nYou can use pycache as both object as well as a decorator\n\n\n```python\nfrom pycache import cached\nfrom pycache import Cache\n\ncache = Cache()\n\n@cached(cache)\ndef add(x,y):\n    return x+y\n\n#operation will be computed and stored on cache\nprint add(2,3)\n\n#will be retrived from cache\nadd(2,3)\n\n\n# As a cache object\nc = Cache()\n\nc.insert(key, value)\nc.update(key, value)\nc.fetch(key)\n\n```\n\n###License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourcepirate%2Fpycache","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsourcepirate%2Fpycache","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourcepirate%2Fpycache/lists"}