trustgraph/scripts/graph-show
2024-07-10 23:20:06 +01:00

10 lines
165 B
Python
Executable file

#!/usr/bin/env python3
from trustgraph.trustgraph import TrustGraph
t = TrustGraph()
rows = t.get_all(limit=100_000_000)
for s, p, o in rows:
print(s, p, o)