amkkk's picture
download
raw
524 Bytes
"""Verify the logbook contents and pinning state."""
from pathlib import Path
import trackio.logbook as lb
PROJ = Path(".trackio")
data = lb.read_logbook(PROJ)
print("Logbook pages:")
for p in data.get("pages", []):
print(f" - {p['slug']}: {p['title']}")
for c in p.get("cells", []):
pinned = c.get("pinned", False)
title = c.get("title", "?")
if len(title) > 60:
title = title[:60] + "..."
print(f" cell {c['id']}: type={c['type']} title={title!r} pinned={pinned}")

Xet Storage Details

Size:
524 Bytes
·
Xet hash:
7e828c96fb68a8bb114eb7da39138e6242f35b6fea58215299c81adaa85db5aa

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.