Metadata-Version: 2.1
Name: masking
Version: 0.0.3
Summary: This package contains a function 'maskstring' to mask a given input string based on the index positions passed as arguments.
Home-page: https://github.com/sangram11/MASKING
Author: Sangram Mohanty
Author-email: odisha532@hotmail.com
License: UNKNOWN
Project-URL: BUG Tracker, https://github.com/sangram11/MASKING
Description: This package contains a function '**maskstring**' to mask a given input string based on the index positions passed as arguments.
        
        Project resources are available at https://github.com/sangram11/MASKING.git
        
        Steps to install the package: -
        
        $pip install masking
        
        Example to show usage of this package: -
        >>>import masking.maskstring as msk
        >>>print(msk.maskstring('helo','*',2))
        
        Output: -
        >**l*
        
        Alternatively you can supply multiple index values where you don't intent to mask.
        
        >>>print(mask.maskstring('Password','*',0,7))
        
        Output: -
        >P******d
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
