mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 16:36:21 +02:00
10 lines
165 B
Python
Executable file
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)
|
|
|