1
0
Vork 0
An implementation of Microsoft's Compound File Binary Format
Go to file
Bob Carroll 9fdfbb3831 update git url 2023-11-07 18:20:23 -06:00
.flake8 initial commit 2020-05-31 16:51:59 -07:00
.gitignore initial commit 2020-05-31 16:51:59 -07:00
COPYING initial commit 2020-05-31 16:51:59 -07:00
README.md initial commit 2020-05-31 16:51:59 -07:00
libcfbf.py update git url 2023-11-07 18:20:23 -06:00
setup.py update git url 2023-11-07 18:20:23 -06:00

README.md

libcfbf

libcfbf is a Python implementation of Microsoft's Compound File Binary Format. Note this library does not have support for writing or modifying documents.

from libcfbf import CfbfDocument

with CfbfDocument.open('foo.doc') as document:
    for x in document.root_entry.children:
        print(x.entry_name)

Specification: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-cfb/53989ce4-7b05-4f8d-829b-d08d6148375b