Metadata-Version: 2.1
Name: pywebarchive
Version: 0.2.2
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
Description: **pywebarchive** is a Python 3 module for reading Apple's `.webarchive` files and extracting them to standard HTML documents. It's currently considered alpha-status code; the API is reasonably feature-complete, but it needs further testing, and likely still contains a few bugs.
        
        Example usage:
        
        ```python
        import webarchive
        archive = webarchive.open("example.webarchive")
        archive.extract("example.html")
        ```
        
        For detailed documentation, try `python -m pydoc webarchive`.
        
        The source distribution also includes two webarchive extraction tools:
        * `extractor.py` is a command-line version.
        * `extractor-gui.py` is a GUI version using Tkinter.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
