{"id":19508189,"url":"https://github.com/yaph/fscache","last_synced_at":"2026-04-15T21:31:25.997Z","repository":{"id":57432359,"uuid":"231491376","full_name":"yaph/fscache","owner":"yaph","description":"A Python package for caching data in the file system.","archived":false,"fork":false,"pushed_at":"2023-11-26T23:45:38.000Z","size":66,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-13T01:59:57.269Z","etag":null,"topics":["cache","caching","file-system","filesystem","json","pypi-package","python-library","serialization"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/fscache","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yaph.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.rst","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":"https://www.paypal.me/rgmz"}},"created_at":"2020-01-03T01:50:30.000Z","updated_at":"2023-11-26T23:19:37.000Z","dependencies_parsed_at":"2024-11-10T23:04:16.253Z","dependency_job_id":null,"html_url":"https://github.com/yaph/fscache","commit_stats":{"total_commits":50,"total_committers":1,"mean_commits":50.0,"dds":0.0,"last_synced_commit":"75b7cec7caac288c833971ba745a237527e2aedd"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/yaph/fscache","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaph%2Ffscache","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaph%2Ffscache/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaph%2Ffscache/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaph%2Ffscache/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yaph","download_url":"https://codeload.github.com/yaph/fscache/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaph%2Ffscache/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31861283,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","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":["cache","caching","file-system","filesystem","json","pypi-package","python-library","serialization"],"created_at":"2024-11-10T23:04:12.142Z","updated_at":"2026-04-15T21:31:25.974Z","avatar_url":"https://github.com/yaph.png","language":"Python","funding_links":["https://www.paypal.me/rgmz"],"categories":[],"sub_categories":[],"readme":"# fscache\n\n**fscache** is a Python package for caching data in the file system.\n\n## Installation\n\n```sh\npip install fscache\n```\n\n## Usage\n\n```python\nimport requests\nfrom fscache import fscache\n\nurl = 'https://example.com/index.html'\ncache_file = fscache.path(url, cache_dir='.fscache')\n\nif fscache.valid(cache_file, lifetime=3600):\n    content = fscache.load(cache_file)\n    # Do something with content\nelse:\n    content = requests.get(url).text\n    # Save content in .fscache/https/example.com/index.html\n    fscache.save(cache_file, content)\n```\n\n## License\n\n[MIT](LICENSE) © [Ramiro Gómez](https://ramiro.org/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyaph%2Ffscache","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyaph%2Ffscache","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyaph%2Ffscache/lists"}