Microsoft Compound File Binary File Format IO
Project description
CfbIO provides access to internal structure of Microsoft Compound File Binary File Format.
Module operates with input file like standard IO module in Python. You can seek, read and maybe one day write those files, like all other file-like objects. Also module grants access to internal directory structure containing Entries, which are also standard readable/seekable objects.
So, your work with this module is very simple:
from cfb import CfbIO
from cfb.directory.entry import SEEK_END
doc = CfbIO("tests/data/simple.doc")
root = doc.root
print(root.read()) # Read whole root entry buffer
some_entry = doc.directory[1].left
some_entry.seek(100, whence=SEEK_END)
print(some_entry.read(100)) # Read last 100 bytes from left sibling
All classes are lazy, so you can read really big files without memory leaks. All data will be read only, when you will want it.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cfb-0.8.3.tar.gz.
File metadata
- Download URL: cfb-0.8.3.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
516562e00e1c5de45b4400d14b6e9e915a3ab7914fdef354d42cce91c919c89d
|
|
| MD5 |
562cc0b2753a029bbe27cecc858b2779
|
|
| BLAKE2b-256 |
6d1083764af3a593937081b910254c50ba8719c58a622140a5f3ee2ec3799c83
|
File details
Details for the file cfb-0.8.3-py2.py3-none-any.whl.
File metadata
- Download URL: cfb-0.8.3-py2.py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc803d0b22ef4389acdb4df535e6218e57033daff4c39a476b6c12c5d2710ace
|
|
| MD5 |
e64c907e64ccfe19777a92d88964a7ae
|
|
| BLAKE2b-256 |
ed1e7da58cf04cf4cb25d1d5a4d8484314ffa5f82b36543e91159cffd33b1e14
|