Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/olefile/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 06:37 +0000

1""" 

2olefile (formerly OleFileIO_PL) 

3 

4Module to read/write Microsoft OLE2 files (also called Structured Storage or 

5Microsoft Compound Document File Format), such as Microsoft Office 97-2003 

6documents, Image Composer and FlashPix files, Outlook messages, ... 

7This version is compatible with Python 2.7 and 3.5+ 

8 

9Project website: https://www.decalage.info/olefile 

10 

11olefile is copyright (c) 2005-2019 Philippe Lagadec (https://www.decalage.info) 

12 

13olefile is based on the OleFileIO module from the PIL library v1.1.7 

14See: http://www.pythonware.com/products/pil/index.htm 

15and http://svn.effbot.org/public/tags/pil-1.1.7/PIL/OleFileIO.py 

16 

17The Python Imaging Library (PIL) is 

18 Copyright (c) 1997-2009 by Secret Labs AB 

19 Copyright (c) 1995-2009 by Fredrik Lundh 

20 

21See source code and LICENSE.txt for information on usage and redistribution. 

22""" 

23 

24from .olefile import * 

25# import metadata not covered by *: 

26from .olefile import __version__, __author__, __date__, __all__ 

27 

28