Python client for Endevre ID authentication flows
Project description
Endevre ID Python Client
A Python helper library for interacting with Endevre ID authentication services. It mirrors the core workflows of the browser client with a server-friendly API.
Features
- Build secure login URLs for Endevre ID SSO flows.
- Exchange authorization codes for tokens (optionally requesting JWTs).
- Refresh access tokens using stored refresh tokens.
- Retrieve user information from tokens or the Endevre ID API.
- Optional JWT validation backed by the public signing key.
- Standards-based OIDC access-token validation from discovery and rotating JWKS.
- Explicit
legacy,dual, andoidcmigration modes with no silent downgrade.
Installation
pip install endevre-id-client
Quick start
from endevre_id_client import EndevreClient
client = EndevreClient(
client_id="<your client id>",
client_secret="<your client secret>",
)
login_url = client.getLoginUrl(
final_redirect_uri="https://app.example.com/auth/callback",
redirect_uris=["https://app.example.com/start"],
)
# After your user completes the flow and you receive the `code`
exchange_result = client.exchange(code)
user_info = client.getUserInfo(exchange_result.token)
refreshed = client.refreshToken(exchange_result.refresh)
OIDC resource-server validation
OIDC support is additive. Existing construction remains in legacy mode by
default. A resource server can opt into OIDC without changing the application
user identifier:
from endevre_id_client import EndevreClient
client = EndevreClient(
client_id="<your client id>",
protocol="oidc",
oidc_issuer="https://id.endevre.com",
)
claims = client.validateToken(bearer_token)
application_user_id = claims["sub"]
assert claims["userId"] == application_user_id
The OIDC sub is the same client-specific identifier issued by the legacy
Endevre flow. userId is included as a compatibility alias. Validation
requires an at+jwt RS256 access token and verifies its signature, issuer,
audience, expiry, client_id, jti, and required claims. Discovery is cached
for one hour and JWKS for five minutes by default; an unknown key ID or
signature change triggers one bounded refresh so signing-key rotation does not
require an application deployment.
During a staged migration, configure protocol="dual" and retain the client
secret:
client = EndevreClient(
client_id="<your client id>",
client_secret="<your legacy client secret>",
protocol="dual",
oidc_issuer="https://id.endevre.com",
)
Dual mode routes tokens by their signed-token shape and exact issuer. An OIDC validation error never falls back to legacy validation. Legacy is still the default only for compatibility while consumers migrate.
For Worker 3 qualification, change only the explicit issuer:
client = EndevreClient(
client_id="<your development client id>",
protocol="oidc",
oidc_issuer="https://worker3.id.endevre.com",
)
getUserInfo() validates OIDC locally first and then calls the discovered
UserInfo endpoint. It rejects a UserInfo response whose sub differs from the
validated access token.
Deliberate API boundary
This release adds resource-server validation; it does not add a second
authorization-code client implementation. In oidc mode, the legacy
getLoginUrl(), exchange(), and refreshToken() methods fail closed. Web
applications should use the Endevre JavaScript SDK or another conformant OIDC
relying-party library for the browser authorization-code flow. In legacy and
dual modes those existing methods keep their current behavior during the
migration window.
Publishing
Automated publishing mirrors the JavaScript package strategy:
- Pushes to
mainpublish the version defined inpyproject.tomlas the stable release. - Pushes to
betapublish a time-stamped beta pre-release (e.g.0.1.0b20241006123000). - Pushes to
devpublish a time-stamped development build (e.g.0.1.0.dev20241006123000). - Pushes to
justin*/ray*branches run tests only (no publish).
All workflows live under .github/workflows/python-ci-cd.yml and rely on the PYPI_API_TOKEN secret (or PyPI Trusted Publisher configuration) for auth.
Development
Install dev dependencies:
pip install -e .[dev]
Run the test suite:
pytest
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 endevre_id_client-0.1.1.dev20260726221714.tar.gz.
File metadata
- Download URL: endevre_id_client-0.1.1.dev20260726221714.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a025f105a0dc0fd0b5aa5e0cb0972995e8aa6b72bf9a171e4b2588e8983b632c
|
|
| MD5 |
47cb4ef077d54e81f1a68be55be15af9
|
|
| BLAKE2b-256 |
31c5066df67755ff04c69a31a0089b3021ec5524118d78ba8a33fc43b0239dcc
|
Provenance
The following attestation bundles were made for endevre_id_client-0.1.1.dev20260726221714.tar.gz:
Publisher:
python-ci-cd.yml on endevre/endevre-id-client-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
endevre_id_client-0.1.1.dev20260726221714.tar.gz -
Subject digest:
a025f105a0dc0fd0b5aa5e0cb0972995e8aa6b72bf9a171e4b2588e8983b632c - Sigstore transparency entry: 2256598801
- Sigstore integration time:
-
Permalink:
endevre/endevre-id-client-python@0fabd2482cc1db5964c4e1a05b57c23704382039 -
Branch / Tag:
refs/heads/dev - Owner: https://github.com/endevre
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-ci-cd.yml@0fabd2482cc1db5964c4e1a05b57c23704382039 -
Trigger Event:
push
-
Statement type:
File details
Details for the file endevre_id_client-0.1.1.dev20260726221714-py3-none-any.whl.
File metadata
- Download URL: endevre_id_client-0.1.1.dev20260726221714-py3-none-any.whl
- Upload date:
- Size: 13.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9be12ff0b125b1fda50fdead7aba5b5394ee35e2bfe2eaacfd94a212c102650
|
|
| MD5 |
29dcae99d2880bbddc65672225a44f60
|
|
| BLAKE2b-256 |
a4278c5eee407767f3a2ee9496ddd8666a4ff1c1e42cba4642fba3da61559158
|
Provenance
The following attestation bundles were made for endevre_id_client-0.1.1.dev20260726221714-py3-none-any.whl:
Publisher:
python-ci-cd.yml on endevre/endevre-id-client-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
endevre_id_client-0.1.1.dev20260726221714-py3-none-any.whl -
Subject digest:
c9be12ff0b125b1fda50fdead7aba5b5394ee35e2bfe2eaacfd94a212c102650 - Sigstore transparency entry: 2256598806
- Sigstore integration time:
-
Permalink:
endevre/endevre-id-client-python@0fabd2482cc1db5964c4e1a05b57c23704382039 -
Branch / Tag:
refs/heads/dev - Owner: https://github.com/endevre
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-ci-cd.yml@0fabd2482cc1db5964c4e1a05b57c23704382039 -
Trigger Event:
push
-
Statement type: