Britive Python SDK
Python client for the Britive API.
The SDK provides Python methods for Britive APIs. It generally passes values to the API for validation, but some methods combine related API operations or normalize responses for Python callers.
This package supports Python versions >= 3.10.
Installation
pip install britive
To install the current source from GitHub instead of PyPI, run:
pip install "git+https://github.com/britive/python-sdk.git"
Documentation
Method docstrings describe parameters, return values, and API-specific behavior.
Official API documentation can be found here: Britive API Documentation.
Authentication
The SDK accepts Britive API tokens, temporary bearer tokens, and workload federation tokens. Provide an API or bearer token in one of these ways:
- Passed directly into the class constructor.
- Injected as an environment variable into the execution context where this package is being run.
The environment variable name is BRITIVE_API_TOKEN.
To source a workload federation token, pass token_federation_provider to the Britive constructor. Supported
providers include AWS, Azure managed identities, Bitbucket Pipelines, GCP, GitHub Actions, GitLab, and Spacelift.
Every token authenticates against a specific Britive tenant. Provide the tenant in one of these ways:
- Passed directly into the
Britiveclass constructor. - Injected as an environment variable into the execution context where this package is being run.
The environment variable name is BRITIVE_TENANT.
In order to obtain the tenant name, reference the Britive URL used to log into the UI. If the URL is
https://example.britive-app.comthen the tenant name will beexample.
Pagination
All pagination is handled by the package. The caller will never have to deal with paginated responses.
Assumptions
- The caller has access to an active Britive tenant.
- The caller has a token for a user, service identity, or workload.
- No assumptions are made about the operating system or file system.
- The SDK does not persist responses unless a method accepts and receives an output file, such as
audit_logs.logs.download_csv(output_file=...).
Resource Coverage
The SDK includes clients for these main Britive areas:
- Access Broker
- API tokens
- Application management, including applications, profiles, accounts, permissions, and scans
- Audit logs and audit log webhooks
- Global settings, including notification mediums, firewall settings, and ITSM
- Identity management, including users, service identities, AI identities, tags, and identity providers
- My Access, My Approvals, My Requests, My Resources, and My Secrets
- Reports
- Secrets Manager
- Security, including SAML, security policies, active sessions, and step-up authentication
- System roles, policies, permissions, consumers, and actions
- Workflows, notifications, and tasks
Proxies
The SDK uses Python requests to communicate with the Britive API. Configure an HTTP
proxy through environment variables supported by requests.
- HTTP proxies will be set via environment variables.
HTTP_PROXYHTTPS_PROXYNO_PROXYhttp_proxyhttps_proxyno_proxy
Standard HTTP proxy URLs should be utilized.
Examples:
- Unauthenticated Proxy:
http://internalproxy.domain.com:8080- Authenticated Proxy:
http://user:pass@internalproxy.domain.com:8080
Custom TLS Certificates
Configure custom TLS certificates through environment variables supported by requests.
- Certificate bundles can be set via environment variables.
REQUESTS_CA_BUNDLECURL_CA_BUNDLE(used as a fallback)PYBRITIVE_CA_BUNDLE(specific to the Britive Python SDK)
The values of these environment variables must be a path to a directory of certificates or a specific certificate.
Example:
/path/to/certfile
Platform Examples
Linux/macOS
export REQUESTS_CA_BUNDLE="/usr/local/corp-proxy/cacert.pem"
Windows
PowerShell
$env:REQUESTS_CA_BUNDLE = "C:\Users\User\AppData\Local\corp-proxy\cacert.pem"
Command Prompt
set "REQUESTS_CA_BUNDLE=C:\Users\User\AppData\Local\corp-proxy\cacert.pem"
Examples
Importing
This should be the only class that is required for import.
from britive.britive import Britive
Optionally, the various exceptions that this package raises can be imported as well, e.g.
from britive import exceptions
Then specific exception(s) could be referenced as demonstrated below:
try:
something()
except exceptions.TokenMissingError:
handle()
List All Users
from britive.britive import Britive
import json
britive = Britive() # source needed data from environment variables
print(json.dumps(britive.identity_management.users.list(), indent=2, default=str))
Provide Needed Authentication Information in the Script
from britive.britive import Britive
import json
britive = Britive(tenant='example', token='...') # source token and tenant locally (not from environment variables)
print(json.dumps(britive.identity_management.users.list(), indent=2, default=str))
Create API Token for a Service Identity
from britive.britive import Britive
import json
britive = Britive() # source needed data from environment variables
print(json.dumps(
britive.identity_management.service_identity_tokens.create(service_identity_id='abc123'),
indent=2,
default=str,
))
Run a Report (JSON and CSV output)
from britive.britive import Britive
import json
britive = Britive() # source needed data from environment variables
print(json.dumps(britive.reports.run(report_id='abc123'), indent=2, default=str))
with open('file.csv', 'w') as f:
f.write(britive.reports.run(report_id='abc123', csv=True))
Create an application profile policy
The commands below will create a policy on a profile that allows user@domain.com to check out the profile but only if
approver@domain.com approves that request within 10 minutes.
from britive.britive import Britive
b = Britive()
policy = b.application_management.profiles.policies.build(
name='example',
users=['user@domain.com'],
approval_notification_medium='Email',
approver_users=['approver@domain.com'],
time_to_approve=10
)
b.application_management.profiles.policies.create(profile_id='...', policy=policy)
Release files for britive 4.7.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| britive-4.7.0.tar.gz | 93.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| britive-4.7.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 227.4 kB
Release files / britive-4.7.0.tar.gz
| Download URL | britive-4.7.0.tar.gz |
|---|---|
| Size | 93.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7c947aede5fb3b508cd61cc71ca521c2505d5f9725cea9bbb6a1a9aba9834f27
|
|
BLAKE2b-256 checksum How to use checksums |
567e3fec3db1199f287ca2cb0b7f3226b551a7370006c7a1c39e0f03e586629e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.9.25
|
Release files / britive-4.7.0-py3-none-any.whl
| Download URL | britive-4.7.0-py3-none-any.whl |
|---|---|
| Size | 133.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
5bf3a6ae89909998ac13dde22273d23fc37684e2b332d63a06a6c33b61be331e
|
|
BLAKE2b-256 checksum How to use checksums |
65276ba4850b9e6e951e33f6c9a03974f70bc973985aba662da6372497f90022
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.9.25
|