Metadata-Version: 2.1
Name: maskprocessor
Version: 0.0.5
Summary: Python maskprocessor implementation which inspired by hashcat maskprocessor
Home-page: https://github.com/Xvezda/python-maskprocessor
Author: Xvezda
Author-email: xvezda@naver.com
License: MIT
Project-URL: Repository, https://github.com/Xvezda/python-maskprocessor
Project-URL: Bug Reports, https://github.com/Xvezda/python-maskprocessor/issues
Description: Python MaskProcessor
        ====================
        [![Python Version](https://img.shields.io/pypi/pyversions/maskprocessor)](https://pypi.org/project/maskprocessor)
        [![Version](https://img.shields.io/pypi/v/maskprocessor)](https://pypi.org/project/maskprocessor)
        [![License](https://img.shields.io/pypi/l/maskprocessor)](LICENSE)
        
        Python maskprocessor implementation which inspired by [hashcat maskprocessor](https://github.com/hashcat/maskprocessor)
        
        
        Installation
        ------------
        ```sh
        pip install maskprocessor
        ```
        
        Usage
        -----
        
        Print help
        ```sh
        maskprocessor --help  # or -h
        ```
        
        Via command line
        ```sh
        $ maskprocessor '?d'
        0
        1
        2
        3
        4
        5
        6
        7
        8
        9
        ```
        
        Import as python module
        
        ```python
        >>> from maskprocessor import maskprocessor as maskproc
        >>> g = maskproc('?l')
        >>> print(next(g))
        a
        >>> print(next(g))
        b
        ```
        
        
        License
        -------
        [MIT License](LICENSE)
        
Keywords: hash,hashcat,maskprocessor,bruteforce
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Classifier: Topic :: Security :: Cryptography
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
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
