trustgraph/scripts/graph-show

11 lines
165 B
Text
Raw Normal View History

2024-07-10 17:04:24 +01:00
#!/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)