"""Generate code from serialized flatbuffers schema in bfbs format. Usage: blockc [(--hash-table=... --hash-mod=)] [-o ] Options: bfbs file which is generated using `flatc -b --schema ` -h --help Show this screen. -t --hash-table=
Generate code to compute hashes for the specified tables. -m --hash-mod= The name of the module which will contain the code to computing hashes. -o Output directory. """ from docopt import docopt def parse_arguments(argv=None): return docopt(__doc__, argv) def main(): print(parse_arguments())