Python SDK and CLI tool for the IDSecure API
Project description
IDSecure Python SDK & CLI
A Python client and CLI tool for interacting with the IDSecure API. This project provides a simple and intuitive interface to manage users, devices, and view logs within your IDSecure instance.
Installation
Install via pip:
pip install idsecure-cli
Or install from source:
git clone https://github.com/tsuriu/idsecure-cli.git
cd idsecure-cli
pip install .
CLI Usage
The package includes a command-line interface idsecure-cli.
Configuration
You can provide credentials via flags or environment variables:
--url/IDSECURE_BASE_URL--user/IDSECURE_USERNAME--password/IDSECURE_PASSWORD
Commands
# List all users
idsecure-cli list-users
# List all devices
idsecure-cli list-devices
# Get details for a specific user
idsecure-cli get-user --id 123
# Delete a user
idsecure-cli delete-user --id 123
SDK Usage
You can also use the IDSecureClient directly in your Python scripts.
Initialization
import asyncio
from idsecure_cli import IDSecureClient
async def main():
# Initialize the client
client = IDSecureClient(
base_url="https://your-idsecure-instance.com",
username="your-username",
password="your-password"
)
# All client methods are asynchronous
async with client:
users = await client.list_users()
print(f"Total users: {users.get('recordsTotal')}")
if __name__ == "__main__":
asyncio.run(main())
Requirements
- Python 3.8+
httpxclickloguru
License
This project is licensed under the MIT License.
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 idsecure_cli-0.1.3.tar.gz.
File metadata
- Download URL: idsecure_cli-0.1.3.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29349a56e8cba6225e92b894e7509efc022e25680a10b36c633ed3dcd19028c2
|
|
| MD5 |
bb6e616ba2bef4ec634501c2854fe0b4
|
|
| BLAKE2b-256 |
5d239c59aa056bb44138575a8f1d66970aa9e3455e4d95c9e23f58c694a380fd
|
File details
Details for the file idsecure_cli-0.1.3-py3-none-any.whl.
File metadata
- Download URL: idsecure_cli-0.1.3-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7333ca1c544c6b93aba31447a66023cb268e6c46aef0bebec7dc9ae8aaee43f
|
|
| MD5 |
8c3e584e5a025a85d74f650a12c915fe
|
|
| BLAKE2b-256 |
7d7c9d7851c6f5b30cf0629fb5ca3cef47eb8e09d95ab7f792ebb5474cb05ea4
|