scim2-cli
An utility command line to help you perform requests against a SCIM server, while validating input and response payloads. It also uses scim2-tester to perform a SCIM server compliance test.
What's SCIM anyway?
SCIM stands for System for Cross-domain Identity Management, and it is a provisioning protocol. Provisioning is the action of managing a set of resources across different services, usually users and groups. SCIM is often used between Identity Providers and applications in completion of standards like OAuth2 and OpenID Connect. It allows users and groups creations, modifications and deletions to be synchronized between applications.
Installation
Binary files
Binary files are available on the releases page.
Python package
scim2-cli is published on the PyPI repository. You can install it with your favourite python package manager.
pip install scim2-cli
From sources
To run scim2-cli from the sources, uv is needed for development:
git clone https://github.com/python-scim/scim2-cli.git
cd scim2-cli
uv sync
Then, it can be launched directly as a Python script:
uv run scim2 --help
Or you can build a single file binary from the sources:
uv sync --group bundle
uv run pyinstaller --name scim2 --onefile scim2_cli/__init__.py
./dist/scim2 --help
Usage
Check the reference for more details.
Here is an example of resource creation:
$ scim2 --url https://auth.example --header "Authorization: Bearer 12345" create user --user-name "bjensen@example.com"
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "2819c223-7f76-453a-919d-413861904646",
"userName": "bjensen@example.com",
"meta": {
"resourceType": "User",
"created": "2010-01-23T04:56:22Z",
"lastModified": "2011-05-13T04:42:34Z",
"version": 'W\\/"3694e05e9dff590"',
"location": "https://example.com/v2/Users/2819c223-7f76-453a-919d-413861904646",
},
}
Here is an example of resource query:
$ scim2 --url https://auth.example --header "Authorization: Bearer 12345" query user 2819c223-7f76-453a-919d-413861904646
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "2819c223-7f76-453a-919d-413861904646",
"userName": "bjensen@example.com",
"meta": {
"resourceType": "User",
"created": "2010-01-23T04:56:22Z",
"lastModified": "2011-05-13T04:42:34Z",
"version": 'W\\/"3694e05e9dff590"',
"location": "https://example.com/v2/Users/2819c223-7f76-453a-919d-413861904646",
}
}
scim2-cli belongs in a collection of SCIM tools developed by Yaal Coop, with scim2-models, scim2-client and scim2-tester
Release files for scim2-cli 0.2.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| scim2_cli-0.2.4.tar.gz | 13.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| scim2_cli-0.2.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 30.6 kB
Release files / scim2_cli-0.2.4.tar.gz
| Download URL | scim2_cli-0.2.4.tar.gz |
|---|---|
| Size | 13.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2f141f3e3e547f525546e0ad358daf110aa0b0cc11eaaf0cc19497b84b6cbb28
|
|
BLAKE2b-256 checksum How to use checksums |
ecb96a3c9082f03e055ec2aa3974b4b4691ecfc4e1d9d13fed5c34393c09c36a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
|
Release files / scim2_cli-0.2.4-py3-none-any.whl
| Download URL | scim2_cli-0.2.4-py3-none-any.whl |
|---|---|
| Size | 17.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cebfaf45eb0b4edd9724c205170087acef66d72840da4e511c8e3a0a19e34a36
|
|
BLAKE2b-256 checksum How to use checksums |
f0a8f665e4e9eb2b916b6f0b01ca6c102c428e2a6d39f04ba81aea88278f65fc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
|