Metadata-Version: 2.1
Name: ComboundFileParser
Version: 0.0.1
Summary: This module implements a Compound file parser (file format used by OLE and base file format for macros, msi, msg, doc, xls...)
Home-page: https://github.com/mauricelambert/ComboundFileParser
Download-URL: https://mauricelambert.github.io/info/python/security/ComboundFileParser.pyz
Author: Maurice Lambert
Author-email: Maurice Lambert <mauricelambert434@gmail.com>
Maintainer: Maurice Lambert
Maintainer-email: Maurice Lambert <mauricelambert434@gmail.com>
License: GPL-3.0 License
Project-URL: Github, https://github.com/mauricelambert/ComboundFileParser
Project-URL: Documentation, https://mauricelambert.github.io/info/python/security/ComboundFileParser.html
Keywords: OLE,CompoundFile,Parser,microsoft,macros,msi,msg,mail,doc,xls
Platform: Windows
Platform: Linux
Platform: MacOS
Classifier: Topic :: System
Classifier: Topic :: Security
Classifier: Operating System :: POSIX
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: Microsoft :: Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

![ComboundFileParser Logo](https://mauricelambert.github.io/info/python/security/ComboundFileParser_small.png "ComboundFileParser logo")

# ComboundFileParser

## Description

This module implements a Compound file parser (file format used by OLE
and base file format for macros, msi, msg, doc, xls...)

## Requirements

This package require:
 - python3
 - python3 Standard Library

## Installation

### Pip

```bash
python3 -m pip install ComboundFileParser
```

### Git

```bash
git clone "https://github.com/mauricelambert/ComboundFileParser.git"
cd "ComboundFileParser"
python3 -m pip install .
```

### Wget

```bash
wget https://github.com/mauricelambert/ComboundFileParser/archive/refs/heads/main.zip
unzip main.zip
cd ComboundFileParser-main
python3 -m pip install .
```

### cURL

```bash
curl -O https://github.com/mauricelambert/ComboundFileParser/archive/refs/heads/main.zip
unzip main.zip
cd ComboundFileParser-main
python3 -m pip install .
```

## Usages

### Command line

```bash
ComboundFileParser              # Using CLI package executable
python3 -m ComboundFileParser   # Using python module
python3 ComboundFileParser.pyz  # Using python executable
ComboundFileParser.exe          # Using python Windows executable
```

### Python script

```python
from ComboundFileParser import *
```

## Links

 - [Pypi](https://pypi.org/project/ComboundFileParser)
 - [Github](https://github.com/mauricelambert/ComboundFileParser)
 - [Documentation](https://mauricelambert.github.io/info/python/security/ComboundFileParser.html)
 - [Python executable](https://mauricelambert.github.io/info/python/security/ComboundFileParser.pyz)
 - [Python Windows executable](https://mauricelambert.github.io/info/python/security/ComboundFileParser.exe)

## License

Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).
