mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 08:26:21 +02:00
parent
887fafcf8c
commit
99e3e43f7b
3 changed files with 23 additions and 3 deletions
|
|
@ -1,5 +1,11 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
""
|
||||
This utility reads a knowledge core in msgpack format and outputs its
|
||||
contents in JSON form to standard output. This is useful only as a
|
||||
diagnostic utility.
|
||||
"""
|
||||
|
||||
import msgpack
|
||||
import sys
|
||||
import argparse
|
||||
|
|
@ -16,7 +22,7 @@ def run(input_file):
|
|||
def main():
|
||||
|
||||
parser = argparse.ArgumentParser(
|
||||
prog='tg-load-pdf',
|
||||
prog='tg-dump-msgpack',
|
||||
description=__doc__,
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue