Metadata-Version: 2.1
Name: safepass
Version: 1.0.8
Summary: Check passwords against https://haveibeenpwned.com/API/v2#PwnedPasswords
Home-page: https://github.com/cmccandless/safepass
Author: Corey McCandless
Author-email: crm1994@gmail.com
License: UNKNOWN
Description: [![Build Status](https://travis-ci.com/cmccandless/safepass.svg?branch=master)](https://travis-ci.com/cmccandless/safepass)[![PyPI version](https://badge.fury.io/py/safepass.svg)](https://badge.fury.io/py/safepass)[![Updates](https://pyup.io/repos/github/cmccandless/safepass/shield.svg)](https://pyup.io/repos/github/cmccandless/safepass/)[![Python 3](https://pyup.io/repos/github/cmccandless/safepass/python-3-shield.svg)](https://pyup.io/repos/github/cmccandless/safepass/)
        
        # safepass
        Check passwords against https://haveibeenpwned.com/API/v2#PwnedPasswords
        
        ## Usage
        
        ### For humans
        
        ```bash
        $ safepass
        Password: <enter pwned password (masked)>
        NOT SAFE!
        $ echo $?
        1
        $ safepass
        Password: <enter not-pwned password (masked)>
        SAFE!
        $ echo $?
        0
        ```
        
        ### For scripting
        
        *Note: scripting mode intended for situations where command history is not saved. Please use above interactive mode if checking directly in command line.*
        
        `$ safepass $PASSWORD`
        
        ### API
        
        ```bash
        >>> from safepass import safepass
        >>> result=safepass(PWNED_PASSWORD)
        NOT SAFE!
        >>> result
        False
        >>> result=safepass(NOT_PWNED_PASSWORD)
        SAFE!
        >>> result
        True
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
