Metadata-Version: 2.0
Name: pywebarchive
Version: 0.1.1
Summary: Module for reading Apple's .webarchive files
Home-page: https://github.com/bmjcode/pywebarchive
Author: Benjamin Johnson
Author-email: bmjcode@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

**pywebarchive** is a Python 3 module for reading Apple's `.webarchive` files and extracting their contents to standard HTML documents. It is currently in the very early stages of development.

Example usage:

```python
import webarchive
archive = webarchive.open("example.webarchive")
archive.extract("example.html")
```

For detailed documentation, try `python -m pydoc webarchive`.


