Using functions which use Securden APIs, developers can retrieve credentials programmatically from Securden server.
Project description
Securden Software Development Kit - Python
This guide will take you through the process of installing and integrating Securden Python SDK for secure programmatic access to credentials.
Summary of Steps
- Installation
- Fetch credential using pre-defined commands
1. Installation
pip install securden_sdk
3. Fetch credential via CLI commands
Required
server_url(String) Securden Server URL. Example: https://company.securden.com:5454.authtoken(String) Securden API Authentication Token.
from securden_sdk import ApiClient
from securden_sdk import Configuration
from securden_sdk.api import DefaultApi
config = Configuration(
host="<your_securden_server_url>",
)
api = ApiClient(configuration=config)
api.authtoken = "<your_api_key>"
securden_instance = DefaultApi(api)
try:
password = securden_instance.get_password(account_id=<your_account_id>)
print("Response:", password)
except Exception as e:
print(e)
-> If you have general questions or issues in using Securden SDK, you may raise a support request to devops-support@securden.com. Our support team will get back to you at the earliest and provide a timeline if there are issue fixes involved.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file securden_sdk-1.0.1.tar.gz.
File metadata
- Download URL: securden_sdk-1.0.1.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2fedd2382572f87eb07512f8937308f82c41be336909f8c714d3c83aa791b7c
|
|
| MD5 |
acb6ada56ef2ac188f394f22503880e9
|
|
| BLAKE2b-256 |
e006ece4b0ba104e3706189ca7703a50b5ca4e18d0228c79f99ca67ac1632bdf
|
File details
Details for the file securden_sdk-1.0.1-py3-none-any.whl.
File metadata
- Download URL: securden_sdk-1.0.1-py3-none-any.whl
- Upload date:
- Size: 22.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75f8c4317a840a92b12697a6741b289742ff05a2ca4d72f9f74b85d99a293a68
|
|
| MD5 |
383dc38a2b1f99fe9776af46c036861c
|
|
| BLAKE2b-256 |
57906590d0d794052d9b307b19a7c2e54eb3ccbecfd29daf9a072dc6dce7217a
|