Metadata-Version: 1.1
Name: mpq
Version: 1.1.1
Summary: Python bindings for StormLib
Home-page: https://github.com/HearthSim/python-mpq
Author: Jerome Leclanche
Author-email: jerome@leclan.ch
License: UNKNOWN
Download-URL: http://github.com/HearthSim/python-mpq/tarball/master
Description: # python-mpq
        
        Python bindings for Ladislav Zezula's [StormLib](http://zezula.net/en/mpq/stormlib.html).
        
        
        ## Usage
        
        ### Reading MPQs
        
        ```py
        import mpq
        f = mpq.MPQFile("base-Win.MPQ")
        
        if "example.txt" in mpq:
        	print(mpq.open("example.txt").read())
        ```
        
        ### Patching MPQs
        
        Modern MPQs support archive patching. The filename usually contains the
        `from` and `to` build numbers.
        
        ```py
        f.patch("hs-6024-6141-Win-final.MPQ")
        ```
        
        ### Writing MPQs
        
        Writing MPQs is not supported.
        
        
        ## License
        
        This project is licensed under the terms of the MIT license.
        The full license text is available in the LICENSE file.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
