__init__.py 967 B

12345678910111213141516171819202122232425262728
  1. """
  2. olefile (formerly OleFileIO_PL)
  3. Module to read/write Microsoft OLE2 files (also called Structured Storage or
  4. Microsoft Compound Document File Format), such as Microsoft Office 97-2003
  5. documents, Image Composer and FlashPix files, Outlook messages, ...
  6. This version is compatible with Python 2.7 and 3.5+
  7. Project website: https://www.decalage.info/olefile
  8. olefile is copyright (c) 2005-2023 Philippe Lagadec (https://www.decalage.info)
  9. olefile is based on the OleFileIO module from the PIL library v1.1.7
  10. See: http://www.pythonware.com/products/pil/index.htm
  11. and http://svn.effbot.org/public/tags/pil-1.1.7/PIL/OleFileIO.py
  12. The Python Imaging Library (PIL) is
  13. Copyright (c) 1997-2009 by Secret Labs AB
  14. Copyright (c) 1995-2009 by Fredrik Lundh
  15. See source code and LICENSE.txt for information on usage and redistribution.
  16. """
  17. from .olefile import *
  18. # import metadata not covered by *:
  19. from .olefile import __version__, __author__, __date__, __all__