Metadata-Version: 2.1
Name: ai1wm
Version: 1.2.1
Summary: Packs/Unpacks `All-in-One WP Migration` packages
Home-page: https://github.com/sanderwang/ai1wm
Author: Sander Wang
Author-email: sw.online@outlook.com
License: MIT
Download-URL: https://github.com/sanderwang/ai1wm/archive/1.2.tar.gz
Description: # Pack/Unpack All-in-One WP Migration Packages
        
        This library provides helper classes for packing/unpacking WordPress [All-in-One WP Migration](
        https://wordpress.org/plugins/all-in-one-wp-migration/) packages.
        
        # Examples
        ## Unpack a File
        
        ```python
        from ai1wm import Ai1wmPackage
        
        package = Ai1wmPackage('/path/to/the/destination/dir')
        package.unpack_from('/path/to/the/source/wpress/file')
        ```
        
        ## Pack a Directory
        
        ```python
        from ai1wm import Ai1wmPackage
        
        package = Ai1wmPackage('/path/to/the/source/dir')
        package.pack_to('/path/to/the/destination/wpress/file')
        ```
        
Keywords: WordPress,All-in-One WP Migration
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
