Metadata-Version: 2.1
Name: strongdm
Version: 1.0.14
Summary: strongDM SDK for the Python programming language.
Home-page: https://github.com/strongdm/strongdm-sdk-python
Author: strongDM Team
Author-email: sdk-feedback@strongdm.com
License: apache-2.0
Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v1.0.14.tar.gz
Description: # strongDM SDK for Python
        
        This is the official [strongDM](https://www.strongdm.com/) SDK for the Python programming language.
        
        
        Learn more with our [📚strongDM API docs](https://www.strongdm.com/docs/api/) or [📓browse the SDK reference](https://strongdm.github.io/strongdm-sdk-python-docs/).
        
        
        ## Installation
        
        ```bash
        $ pip install strongdm
        ```
        
        ## Authentication
        
        If you don't already have them you will need to generate a set of API keys, instructions are here: [API Credentials](https://www.strongdm.com/docs/admin-guide/api-credentials/)
        
        Add the keys as environment variables; the SDK will need to access these keys for every request.
        ```bash
        $ export SDM_API_ACCESS_KEY=<YOUR ACCESS KEY>
        $ export SDM_API_SECRET_KEY=<YOUR SECRET KEY>
        ```
        
        ## List Users
        The following code lists all registered users:
        
        ```python
        import os
        import strongdm
        
        def main():
            client = strongdm.Client(os.getenv("SDM_API_ACCESS_KEY"),
                                os.getenv("SDM_API_SECRET_KEY"))
        
            users = client.accounts.list('')
            for user in users:
                print(user)
        
        if __name__ == "__main__":
            main()
        ```
        
        ## Useful Links
        
        * Documentation:  [strongdm package](https://strongdm.github.io/strongdm-sdk-python-docs/)
        * Examples: [GitHub - strongdm/strongdm-sdk-python-examples](https://github.com/strongdm/strongdm-sdk-python-examples)
        	1. [Managing Resources](https://github.com/strongdm/strongdm-sdk-python-examples/tree/master/1_managing_resources)
        	2. [Managing Accounts](https://github.com/strongdm/strongdm-sdk-python-examples/tree/master/2_managing_accounts)
        	3. [Managing Roles](https://github.com/strongdm/strongdm-sdk-python-examples/tree/master/3_managing_roles)
        	4. [Managing Gateways](https://github.com/strongdm/strongdm-sdk-python-examples/tree/master/4_managing_gateways)
           
        ## License
        
        [Apache 2](https://github.com/strongdm/strongdm-sdk-python/blob/master/LICENSE)
        
        ## Contributing 
        
        Currently, we are not accepting pull requests directly to this repository, but our users are some of the most resourceful and ambitious folks out there. So, if you have something to contribute, find a bug, or just want to give us some feedback, please email <support@strongdm.com>.
Keywords: strongDM,sdm,api,automation,security,audit,database,server,ssh,rdp
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Security
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
