Metadata-Version: 1.1
Name: zipe
Version: 0.1.2
Summary: A zip utility for cross OS, especially file name encoding problem.
Home-page: https://github.com/jbking/zipe/
Author: MURAOKA Yusuke
Author-email: yusuke@jbking.org
License: MIT
Description: Look help at each command.
        
        zipe only supports cp932 and utf-8 as encoding to. And no support making encrypt zip archive for now.
        
        ::
        
            usage: zipe [-h] [-F ENCODING] -T ENCODING [-r] [-v]
                        [-x EXCLUDE | -i INCLUDE]
                        ZIP_FILE ENTRY [ENTRY ...]
        
            Zipper for not native encoded filename file
        
            positional arguments:
              ZIP_FILE              ZIP archive
              ENTRY                 file entries
        
            optional arguments:
              -h, --help            show this help message and exit
              -F ENCODING, --from ENCODING
                                    filename encoding from(Default
                                    sys.getfilesystemencoding())
              -T ENCODING, --to ENCODING
                                    filename encoding to
              -r, --recursive       archive recursively
              -v, --verbose         verbose mode
              -x EXCLUDE, --exclude EXCLUDE
                                    exclude file pattern in RegExp
              -i INCLUDE, --include INCLUDE
                                    include file pattern in RegExp
        
        ::
        
            usage: unzipe [-h] [-l] [-P PASSWORD] [--force] -F ENCODING [-T ENCODING]
                          [-x EXCLUDE | -i INCLUDE]
                          ZIP_FILE [ENTRY [ENTRY ...]]
        
            Unzipper for not native encoded filename file
        
            positional arguments:
              ZIP_FILE              ZIP archive
              ENTRY                 can specify file entries
        
            optional arguments:
              -h, --help            show this help message and exit
              -l, --list            list entries instead of extracting
              -P PASSWORD, --password PASSWORD
                                    password for encrypted
              --force               extract file even if its absolute path
              -v, --verbose         verbose mode
              -F ENCODING, --from ENCODING
                                    filename encoding from
              -T ENCODING, --to ENCODING
                                    filename encoding to(Default
                                    sys.getfilesystemencoding())
              -x EXCLUDE, --exclude EXCLUDE
                                    exclude filename pattern in RegExp
              -i INCLUDE, --include INCLUDE
                                    include filename pattern in RegExp
        
Keywords: zip utility
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
