Cs3 — Raw
"entries": [ "name": "notes.txt", "size": 1024, "etag": "\"abc123\"", "type": "file", "name": "pics", "type": "directory" ]
All values median of 100 runs.
"directory"
@app.get("/stat") def stat(ref: str): path = resolve_ref(ref) if not path.exists(): raise HTTPException(404) stat = path.stat() return "size": stat.st_size, "mtime": time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime(stat.st_mtime)), "etag": f""stat.st_mtime-stat.st_size"", "type": "directory" if path.is_dir() else "file" cs3 raw
CS3 Raw drops: shares, public links, garbage collection, file versions, arbitrary metadata, workflows, and space management. Those can be added via sidecar services. 5.1 Server (Python + FastAPI + local filesystem) from fastapi import FastAPI, Header, HTTPException from pathlib import Path import os, json, time app = FastAPI() ROOT = Path("/var/cs3raw") "entries": [ "name": "notes






