We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8333fc9 commit a74017aCopy full SHA for a74017a
pyOneNote/Main.py
@@ -55,6 +55,7 @@ def process_onenote_file(file, output_dir, extension, json_output):
55
for name, file in data['files'].items():
56
print('{}{} ({}):'.format(indent, name, file['identity']))
57
print('\t{}Extension: {}'.format(indent, file['extension']))
58
+ print('\t{}At offset: {} ({} bytes)'.format(indent, file['offset'], len(file['content'])))
59
if(file['identity'] in file_metadata):
60
for property_name, property_val in file_metadata[file['identity']].items():
61
print('{}{}: {}'.format(indent+'\t', property_name, str(property_val)))
0 commit comments