mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-26 00:46:22 +02:00
11 lines
165 B
Text
11 lines
165 B
Text
|
|
#!/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)
|
||
|
|
|