Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/strongdm/strongdm-sdk-python
strongDM SDK for the Python programming language.
https://github.com/strongdm/strongdm-sdk-python
api automation python sdk sdk-python strongdm
Last synced: 4 days ago
JSON representation
strongDM SDK for the Python programming language.
- Host: GitHub
- URL: https://github.com/strongdm/strongdm-sdk-python
- Owner: strongdm
- License: apache-2.0
- Created: 2020-03-03T17:28:55.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T22:53:54.000Z (6 months ago)
- Last Synced: 2024-05-22T23:46:22.190Z (6 months ago)
- Topics: api, automation, python, sdk, sdk-python, strongdm
- Language: Python
- Homepage: https://strongdm.github.io/strongdm-sdk-python-docs/
- Size: 16.8 MB
- Stars: 10
- Watchers: 15
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```strongDM uses [semantic versioning](https://semver.org/). We do not guarantee
compatibility between major versions. Be sure to use version constraints to pin
your dependency to the desired major version of the strongDM SDK.## 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=
$ export SDM_API_SECRET_KEY=
```## List Users
The following code lists all registered users:
```python
import os
import strongdmdef 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/)
- [Migrating from v2 to v3](https://github.com/strongdm/strongdm-sdk-python/releases/tag/v3.0.0)
- [Migrating from Role Grants to Access Rules](https://github.com/strongdm/strongdm-sdk-python/wiki/Migrating-from-Role-Grants-to-Access-Rules)
- 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)
5. [Auditing](https://github.com/strongdm/strongdm-sdk-python-examples/tree/master/5_auditing)
6. [Managing Access Workflows](https://github.com/strongdm/strongdm-sdk-python-examples/tree/master/6_managing_workflows)## 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 .