Metadata-Version: 2.1
Name: credsleuth
Version: 0.0.8
Summary: A rule based library to help identify credentials and secrets in files and strings.
Home-page: https://github.com/rikkouri/credsleuth
Author: Dave Davison
Author-email: dave.davison@hotmail.com
License: UNKNOWN
Description: # Credential Sleuth
        A rule driven library for detecting secrets and credentials within files and strings.
        
        ## Simple Usage
        ### Finding secrets in a string:
        ```python
        import credsleuth
        
        data = """
        Hello, world
        Password=123
        aws_access_key_id = AKIAIOSFODNN7EXAMPLE
        Goodbye
        """
        print(credsleuth.check_string(data))
        ```
        
        
        ### Finding secrets in a string:
        ```python
        import credsleuth
        
        print(credsleuth.check_string("filename.txt"))
        ```
        ## Advanced Usage
        - Todo
        
        ## Installation
        `pip install --user credsleuth`
        
        ## Writing Rules
        See `rules.json` for an example to extent. 
        
        ## Todo
        - Add some comments to codebase
        - Add pretty output options for command line execution.
        - Write a proper read me.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
