Metadata-Version: 2.1
Name: pywebarchive
Version: 0.3.2
Summary: Module for reading Apple's webarchive format
Home-page: https://github.com/bmjcode/pywebarchive
Author: Benjamin Johnson
Author-email: bmjcode@gmail.com
License: UNKNOWN
Description: **pywebarchive** is software for reading Apple's [webarchive](https://en.wikipedia.org/wiki/Webarchive) format.
        
        A webarchive stores a complete web page -- including external media like images, scripts, and style sheets -- in a single file. It is most notable as the default format for the [Safari](https://www.apple.com/safari/) browser's "Save As" command, though other Apple software also uses it for various purposes.
        
        pywebarchive consists of two main components: Webarchive Extractor, a tool to convert webarchives to standard HTML documents; and the `webarchive` Python module, which is the code "under the hood" that makes it all work.
        
        
        ## Webarchive Extractor
        
        Webarchive Extractor converts webarchives to standard HTML documents. It allows opening webarchives on Windows and Linux/Unix systems, where Safari is not available.
        
        ### Downloads
        File | Size | Description
        ---- | ---- | -----------
        [Webarchive.Extractor.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.3.2/Webarchive.Extractor.exe) | 7.4 MB | Windows (32-bit, standalone)
        [Webarchive.Extractor.x64.exe](https://github.com/bmjcode/pywebarchive/releases/download/v0.3.2/Webarchive.Extractor.x64.exe) | 8.1 MB | Windows (64-bit, standalone)
        [pywebarchive-0.3.2.zip](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.3.2.zip) | | source code (zip)
        [pywebarchive-0.3.2.tar.gz](https://github.com/bmjcode/pywebarchive/archive/refs/tags/v0.3.2.tar.gz) | | source code (tar.gz)
        
        ### Notes
        The Windows version runs on Windows 7 and higher. It is a standalone executable -- no installation required.
        
        The pywebarchive source code includes both graphical ([extractor-gui.py](extractor-gui.py)) and command-line ([extractor.py](extractor.py)) versions of Webarchive Extractor. The graphical version requires Tkinter; the command-line version should run on any system.
        
        These download links are for the most recent stable release. If you're reading this on GitHub, be aware that you may be looking at a newer version of the code than what's linked here.
        
        
        ## The `webarchive` module
        
        `webarchive` is a Python module for reading the webarchive format. While its primary function is to power Webarchive Extractor, applications can also use it to examine webarchives directly.
        
        The recommended way to install the `webarchive` module is [through PyPI](https://pypi.org/project/pywebarchive/). For detailed documentation, try `python3 -m pydoc webarchive`.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
