Metadata-Version: 2.1
Name: rlock
Version: 0.0.5
Summary: A RedLock API Client
Home-page: https://github.com/cloudcraeft/rlock
Author: cloudcraeft
Author-email: cloudcraeft@outlook.com
License: MIT License
Requires-Dist: requests

Copyright (c) 2019 Hays Hutton

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Description: # A [RedLock](https://redlock.io/) API Client
        
        `rlock` is a python package which integrates with parts of the API of the
        RedLock Public Cloud Security service.
        
        ```bash
        from rlock.api import Client
        >>>c = Client("scott@oracle.com", "tiger", "https://api.redlock.io/")
        >>>for policy in c.policies.take(5):
        ...    print(f"{policy.policyId}: {policy.name}")
        43c42760-5283-4bc4-ac43-a80e58c4139f: AWS S3 bucket has global view ACL permissions enabled
        472e08a2-c741-43eb-a3ca-e2f5cd275cf7: Azure Network Security Group allows FTP (TCP Port 21)
        91c941aa-d110-4b33-9934-aadd86b1a4d9: AWS Redshift database does not have audit logging enabled
        f5b4b962-e053-4e73-94d2-c21bd2520a0d: AWS ElastiCache cluster not associated with VPC
        fe81b03a-c602-4b16-8ae9-973724c1adae: GCP Kubernetes Engine Clusters web UI/Dashboard is set to Enabled
        ```
        
        
        ## Installation
        `pip install rlock`
        
        ## Documentation
        https://rlock.readthedocs.org/
        
Platform: UNKNOWN
Requires-Python: ~=3.7
Description-Content-Type: text/markdown
