1- """
2- olefile (formerly OleFileIO_PL)
3-
4- Module to read/write Microsoft OLE2 files (also called Structured Storage or
5- Microsoft Compound Document File Format), such as Microsoft Office 97-2003
6- documents, Image Composer and FlashPix files, Outlook messages, ...
7- This version is compatible with Python 2.6+ and 3.x
8-
9- Project website: https://www.decalage.info/olefile
10-
11- olefile is copyright (c) 2005-2017 Philippe Lagadec (https://www.decalage.info)
12-
13- olefile is based on the OleFileIO module from the PIL library v1.1.6
14- See: http://www.pythonware.com/products/pil/index.htm
15-
16- The Python Imaging Library (PIL) is
17- Copyright (c) 1997-2005 by Secret Labs AB
18- Copyright (c) 1995-2005 by Fredrik Lundh
19-
20- See source code and LICENSE.txt for information on usage and redistribution.
21- """
22-
23- from .olefile import *
24- # import metadata not covered by *:
25- from .olefile import __version__ , __author__ , __date__
26-
27-
28- __all__ = ['isOleFile' , 'OleFileIO' , 'OleMetadata' , 'enable_logging' ,
29- 'MAGIC' , 'STGTY_EMPTY' ,
30- 'STGTY_STREAM' , 'STGTY_STORAGE' , 'STGTY_ROOT' , 'STGTY_PROPERTY' ,
31- 'STGTY_LOCKBYTES' , 'MINIMAL_OLEFILE_SIZE' ,]
1+ """
2+ olefile (formerly OleFileIO_PL)
3+
4+ Module to read/write Microsoft OLE2 files (also called Structured Storage or
5+ Microsoft Compound Document File Format), such as Microsoft Office 97-2003
6+ documents, Image Composer and FlashPix files, Outlook messages, ...
7+ This version is compatible with Python 2.6+ and 3.x
8+
9+ Project website: https://www.decalage.info/olefile
10+
11+ olefile is copyright (c) 2005-2017 Philippe Lagadec (https://www.decalage.info)
12+
13+ olefile is based on the OleFileIO module from the PIL library v1.1.7
14+ See: http://www.pythonware.com/products/pil/index.htm
15+ and http://svn.effbot.org/public/tags/pil-1.1.7/PIL/OleFileIO.py
16+
17+ The Python Imaging Library (PIL) is
18+ Copyright (c) 1997-2009 by Secret Labs AB
19+ Copyright (c) 1995-2009 by Fredrik Lundh
20+
21+ See source code and LICENSE.txt for information on usage and redistribution.
22+ """
23+
24+ from .olefile import *
25+ # import metadata not covered by *:
26+ from .olefile import __version__ , __author__ , __date__
27+
28+
29+ __all__ = ['isOleFile' , 'OleFileIO' , 'OleMetadata' , 'enable_logging' ,
30+ 'MAGIC' , 'STGTY_EMPTY' ,
31+ 'STGTY_STREAM' , 'STGTY_STORAGE' , 'STGTY_ROOT' , 'STGTY_PROPERTY' ,
32+ 'STGTY_LOCKBYTES' , 'MINIMAL_OLEFILE_SIZE' ,]
0 commit comments