{"id":20310833,"url":"https://github.com/progrium/httpfs","last_synced_at":"2025-04-11T16:03:53.016Z","repository":{"id":234028046,"uuid":"788193917","full_name":"progrium/httpfs","owner":"progrium","description":"Create filesystems using your favorite HTTP framework.","archived":false,"fork":false,"pushed_at":"2024-05-01T20:42:27.000Z","size":21,"stargazers_count":37,"open_issues_count":1,"forks_count":3,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-25T12:06:32.352Z","etag":null,"topics":["filesystem","flask","fuse","golang","http"],"latest_commit_sha":null,"homepage":"","language":"Go","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/progrium.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-04-18T00:29:33.000Z","updated_at":"2025-03-05T05:16:37.000Z","dependencies_parsed_at":"2024-05-01T22:10:30.635Z","dependency_job_id":null,"html_url":"https://github.com/progrium/httpfs","commit_stats":null,"previous_names":["progrium/httpfs"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/progrium%2Fhttpfs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/progrium%2Fhttpfs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/progrium%2Fhttpfs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/progrium%2Fhttpfs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/progrium","download_url":"https://codeload.github.com/progrium/httpfs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248438493,"owners_count":21103409,"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":["filesystem","flask","fuse","golang","http"],"created_at":"2024-11-14T17:34:41.503Z","updated_at":"2025-04-11T16:03:52.982Z","avatar_url":"https://github.com/progrium.png","language":"Go","readme":"# httpfs\n\nCreate virtual filesystems using any HTTP framework.\n\n\n```\n$ tree ~/demo\n/Users/progrium/demo\n├── greet\n│   ├── goodbye\n│   └── hello\n└── random\n\n2 directories, 3 files\n```\n\nThe file tree mounted at `~/demo` is powered by this Flask app:\n\n```python\nimport os, random\nfrom flask import Flask\nfrom autodir import AutoDirMiddleware\n\napp = Flask(__name__)\nAutoDirMiddleware(app)\n\n@app.get(\"/greet/hello\")\ndef hello():\n    return \"Hello, world!\\n\"\n\n@app.get(\"/greet/goodbye\")\ndef goodbye():\n    return \"Goodbye, world!\\n\"\n\n@app.get(\"/random\")\ndef rnd():\n    return ''.join(random.choice('abcdefghijklmnopqrstuvwyz') for _ in range(24))+\"\\n\"\n```\n\nAll it took was one command:\n```\nhttpfs -mount ~/demo ./examples/flask-basic/app.py\n```\n\nDon't care for Flask? Use any web framework!\n\n## Install\n\nCurrently works on Linux and Mac (with [MacFUSE](https://osxfuse.github.io/)). Download from [latest release](https://github.com/progrium/httpfs/releases/latest) or you can run this installer:\n\n```sh\nbash -c \"$(curl -sSL https://raw.githubusercontent.com/progrium/httpfs/main/install.sh)\"\n```\n\nAlternatively you can install using [Homebrew](https://brew.sh/):\n\n```sh\nbrew tap progrium/homebrew-taps\nbrew install httpfs\n```\n\n## Build an HTTP filesystem\n\nCheck out the [examples directory](examples) or read the [PROTOCOL.md](PROTOCOL.md) to see how it works.\n\n## Roadmap\n\nFull read-write and more coming soon. See our [roadmap](https://github.com/users/progrium/projects/2/views/1).\n\n## License\n\nMIT\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogrium%2Fhttpfs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprogrium%2Fhttpfs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprogrium%2Fhttpfs/lists"}