Dex SDK for Python
Flow state I/O
Applications read and write Flow state through typed RPCs. Client and AsyncClient do not expose direct Attribute reads or writes, Channel publication, or pending-message mutation. This keeps each external state transition behind a Flow-owned method.
RPC handlers can stage channel.delete(context, message_id). Declare the RPC as
@rpc(is_transactional=True) when a missing message must abort its other writes.
Attribute locks already select transactional execution, but Channel deletion
itself does not.
RPC state loading
RPCs receive ordinary Attributes and all Channel size metadata by default. AttributeMap entries and pending Channel messages are opt-in:
@dex.rpc(
load_attribute_map_instances=(items.load("tenant-a"),),
load_channels=(queued,),
load_channel_maps=(by_tenant,),
)
def snapshot(self, context: dex.Context) -> dex.RPCResult[Snapshot]:
messages = queued.pending_messages(context)
return dex.RPCResult(Snapshot(messages=messages))
Put an AttributeMap or ChannelMap directly in its plural load option when every current instance is needed. Use the singular instance options for the less common exact-instance case. A selected empty queue returns an empty tuple; reading an unselected map entry raises AttributeMapNotLoadedError. An unselected pending-message snapshot raises ChannelMessagesNotLoadedError. Pending messages preserve FIFO order and include the server-assigned message ID. The snapshot does not change after the handler stages a publish or deletion.
Loading controls which data reaches the Worker. is_transactional controls atomic commit and Channel deletion validation. Attribute locks add isolation only among cooperating Steps and RPCs using the same lock. Write-only publish and delete operations do not require loading.
Step and timeout-handler state loading
StepOptions provides the same five selections independently for wait_for and
execute: all AttributeMap instances, exact AttributeMap instances, Channels,
all ChannelMap instances, and exact ChannelMap instances. The methods receive
independent snapshots. Execute reads after the winning Wait consumes messages;
retries of one logical method call reuse its first snapshot.
FlowTimeoutHandlerOptions provides Execute-style timeouts, heartbeat detection,
retry, durability, Attribute locks, and the same state selections. Set it on
StartFlowOptions or SubFlowOptions only for a positive timeout using HANDLER.
Exhausted retries may proceed to a registered Step[None]; read the final
failure from Context.recovery_error.
class TimeoutRecoveryStep(Step[None]):
def execute(self, context: Context, input: None) -> StepDecision:
failure = context.recovery_error
if failure is None:
return force_fail("timeout recovery has no failure")
return force_fail(failure.detail)
Python SDK for Dex workflow engine
New user contracts
The rewrite targets Python 3.11+ and exposes strongly typed workflow contracts
from dex. This phase includes definitions, attributes, channels, streams, waits,
decisions, codecs, registry validation, synchronous client calls, and synchronous
worker handlers. Python owns its gRPC Client and Worker transport;
the shared Rust Core is used only for BlobCache.
from datetime import timedelta
from typing import Generator
import dex
counter = dex.Attribute("counter", int)
counters_by_region = dex.AttributeMap("counters-by-region", int)
progress = dex.Stream("progress", str, 10 * 1024 * 1024)
class Run(dex.Step[str]):
def wait_for(
self, context: dex.Context, input: str
) -> dex.Wait:
return dex.Wait.until(
dex.Timer.by_duration(timedelta(seconds=1))
)
def execute(
self, context: dex.Context, input: str
) -> Generator[dex.StepOutput, None, dex.StepDecision]:
yield progress.write(context, "running")
yield dex.heartbeat({"phase": "running"})
return dex.graceful_complete(input)
class CounterFlow(dex.Flow[str]):
run = Run()
def get_flow_type(self) -> str:
return "Counter"
def get_steps(self) -> dex.StepList[str]:
return dex.StepList.start_step(self.run)
def get_persistence_schema(self) -> dex.PersistenceSchema:
return dex.PersistenceSchema.of(counter, counters_by_region, progress)
@dex.rpc(name="Increment")
def increment(
self, context: dex.Context, input: int
) -> dex.RPCResult[int]:
return dex.RPCResult(input + 1)
flow = CounterFlow()
registry = dex.Registry((flow,))
Registry derives codecs from declared Python types and handler annotations.
Built-in primitive types and dataclasses need no codec arguments. Register an
explicit codec only for a custom encoding or a type Registry cannot derive.
PersistenceSchema.of(...) accepts attributes, channels, and streams together and
partitions them by definition type.
Worker and AsyncWorker synchronize all registered Indexed Attributes with
Dex Server before opening their listener. Existing indexes return immediately;
failure or the default two-minute deadline aborts startup. An indexed
AttributeMap must provide one fixed index_key.
Initial attributes retain their value types without a public wrapper class:
options = (
dex.StartFlowOptions()
.with_attribute(counter, 1)
.with_attribute(counters_by_region, "us-west", 1)
)
Opt in when declaring an Attribute or AttributeMap, and select the Store in Flow configuration:
email = dex.Attribute("customer-email", str, sync_to_attribute_store=True)
config = dex.FlowConfig(attribute_store_names=["profiles", "audit"])
Stores are asynchronous latest-state projections. Every enabled Attribute write
is sent to every selected Store. Deletion writes SQL NULL, and projection
failures do not roll back Flow Attributes. None preserves current targets;
an explicit empty list disables future synchronization while retaining protocol
presence.
pip install dex-python-sdk==0.1.0
See samples for use case examples.
Requirements
- Python 3.11+
- Dex server
Concepts
Applications implement two generic interfaces from dex:
Flow[START_INPUT]returnsStepList.start_step(...), followed by optional.other_steps(...), from oneget_steps()method. TheStepListgeneric binds the Flow input to the starting Step input. UseStepList.empty()when a Flow has no Steps.Step[INPUT]implementsexecuteand optionallywait_for. The default Worker accepts ordinary synchronous handlers and generator handlers. A generator yieldsStepOutputprogress frames and returns its finalWaitorStepDecision. WithAsyncWorkerandRegistry(..., allow_async_handlers=True), Step coroutines useAsyncContext; async RPCs keepContext.
StepOptions.wait_for_method_timeout and execute_method_timeout bound the
two handler calls. Timer and channel conditions determine how long a Step waits.
wait_for_retry and execute_retry limit one logical handler execution. With
StepDurability.ASYNC, local and fallback regular activities share maximum
attempts, total duration, and 1-based attempt numbers. Fallback starts
immediately; later regular retries continue the backoff sequence at the
cumulative attempt.
The default Step durability is synchronous. A Flow configuration can select asynchronous durability, and a Step method override has highest precedence. The default retry total duration is four hours. Regular attempts default to a two-hour method timeout and one-minute heartbeat timeout; an explicit heartbeat timeout must meet the server minimum, which defaults to ten seconds. Asynchronous durability first allows at most three local attempts in seven seconds. The local phase ignores method timeouts and heartbeat frames before falling back to a regular activity.
Step progress and heartbeat recovery
A synchronous handler yields every heartbeat and Stream write. The generator return value is the only final result:
def execute(
self, context: dex.Context, input: str
) -> Generator[dex.StepOutput, None, dex.StepDecision]:
yield dex.heartbeat({"offset": 10})
yield progress.write(context, "processed 10 items")
return dex.graceful_complete(input)
An asynchronous handler keeps its normal coroutine return. Stream writes enqueue without waiting for Stream Store acknowledgement; heartbeat waits only for the Worker output queue:
async def execute(
self, context: dex.AsyncContext, input: str
) -> dex.StepDecision:
writer = progress.buffered_text(context)
writer.write("started")
await context.heartbeat({"offset": 10})
return dex.graceful_complete(input)
The async buffered writer has a synchronous write method, so writer.write
can be passed directly as an LLM delta callback. It flushes after one second, at
a soft 16 KiB UTF-8 threshold, or before the final result or error. It
concatenates chunks exactly and ignores empty chunks.
A synchronous generator uses the cooperative form because only yielded
StepOutput values can reach gRPC:
writer = progress.buffered_text(context)
yield from writer.write(delta)
yield from writer.flush()
Its interval is checked by the next write, and the handler must explicitly flush the tail. Retry does not restore either writer's unsent buffer or deduplicate sent batches.
Call heartbeat() or await context.heartbeat() without a value to clear previous
details. Passing Python None persists a present null Value. On a later regular
attempt, use context.has_last_heartbeat_value() before decoding with
context.get_last_heartbeat_value(ExpectedType). A Stream frame is also an implicit
heartbeat, but it preserves the latest explicit heartbeat state.
A Step may write the same Stream any number of times. Dex assigns
#<stepExecutionID> as each Step message's StreamMessage.source. Client writes
provide their own non-empty source; duplicate sources and # are allowed and every
write appends:
client.write_stream(flow_id, progress, "frontend#preview", "rendering")
message = client.read_stream(flow_id, progress)
print(message.source)
Client.read_stream and AsyncClient.read_stream move forward one message at
a time and can long-poll. Their list_stream_messages methods return one
non-blocking newest-first retained page. Pass the registered Stream, a
positive page size, and an empty token for the first page. Pass
StreamMessagesPage.next_page_token unchanged to read older messages until it
is empty. The server caps page size at 1000 by default. A trimmed anchor returns
an empty page, and newer concurrent writes do not enter an existing older-page
chain.
Canceling Step executions
A successful Step can cancel queued or active executions while continuing with its normal decision:
return (
dex.go_to(RecordQuote, quote)
.with_canceling_sibling_steps(QuoteCarrierA, QuoteCarrierB)
.with_canceling_steps(GlobalQuoteTimeout)
)
with_canceling_steps selects every current execution of each registered Step
type. with_canceling_sibling_steps selects only executions with the same
Context.from_step_execution_id as the current execution. Decisions are
immutable; repeated calls form a union, and Flow-wide selection wins for the
same Step type. Unregistered selectors produce an invalid Step result.
Dex resolves one snapshot after the current execution succeeds. Completed, already-canceled, and absent targets are no-ops. Next Steps created by the same decision are outside the snapshot. Dex immediately applies the next or close action; late decisions, writes, retries, and recovery Steps are discarded.
RPCResult.with_canceling_steps provides the Flow-wide selector for RPCs.
RPCs do not support sibling selection because they have no Step execution
lineage.
Soft Flow timeout
Override Flow.handle_timeout to make a positive timeout use handler policy
by default. Both synchronous and async Workers support the hook:
class Orders(dex.Flow[str]):
async def handle_timeout(self, context: dex.Context) -> dex.StepDecision:
await notify_expiration(context)
return dex.force_complete("expired")
options = dex.StartFlowOptions(
timeout=timedelta(minutes=30),
timeout_policy=dex.FlowTimeoutPolicy.HANDLER,
)
Register async hooks with allow_async_handlers=True and run them with
AsyncWorker. FAIL produces FlowErrorType.FLOW_TIMEOUT and permits Flow
retry; CANCEL cancels without retry. Continue-as-new preserves the deadline,
while retry runs receive a fresh budget. A zero or absent timeout
disables the feature.
Registry validates every Flow, Step, RPC signature, durable name, lock, and
codec before Client or Worker startup. Client methods use these typed objects
instead of raw Flow, Step, or RPC strings.
Waiting and map inspection
Wait.until, Wait.all_of, and Wait.any_of use unnamed Conditions by
default. Do not add condition IDs merely because a Condition is nested in one
of these waits. Every Condition in Wait.any_combination_of must have a
non-empty user ID; the same Condition instance may appear in multiple
combinations.
Both Client and AsyncClient provide singleton and AttributeMap-instance
overloads of wait_for_attribute_match. Build matches with the six
AttributeMatch factories. The method targets the current run and returns the
decoded matched value. String and bool support equality operators; int and
float support every operator. JSON objects, bytes, null, non-finite floats, and
invalid ordering fail before transport. Every AttributeMap and ChannelMap instance must be non-empty
and must not contain /. AttributeMap.get_map_size/get_all_instance_keys include
buffered sets and deletes. The matching ChannelMap methods are RPC-only,
include buffered publishes, and omit empty instances. Keys are decoded and
sorted. Use force_complete_if_channels_empty(...) for conditional completion.
Client.wait_for_flow and AsyncClient.wait_for_flow return a
FlowResult after hydrating every output-bearing completion. Use
single_output only when the Flow contract produces exactly one output:
output = client.wait_for_flow(flow_id).single_output(OrderResult)
result = client.wait_for_flow(flow_id)
for completion in result.completions:
if completion.step_execution_id == expected_execution_id:
output = completion.decode(OrderResult)
completions is an immutable tuple in server collection order. Parallel branch
order is not deterministic, so select by step_type or step_execution_id.
No-output Flows return an empty tuple; single_output raises ValueError for
zero or multiple completions. Every terminal status returns a FlowResult; inspect
status, error_type, and error_message for unsuccessful completion.
SubFlows are normal, independently addressable Flows used as durable Conditions:
def wait_for(self, context: Context, input: ChargeInput) -> Wait:
return Wait.until(SubFlow.run(self.charge_flow, input))
def execute(self, context: Context, input: ChargeInput) -> StepDecision:
del input
receipt = SubFlow.get_condition_results(context).single_output(Receipt)
return graceful_complete(receipt)
SubFlow.get_flow_id(context, index=0) remains available for a running any_of
loser. SubFlowOptions configures timing, timeout policy, retry, initial target
Attributes, Flow config, Condition ID, and reuse. Parent completion does not cancel an unfinished
SubFlow.
Errors
Client calls raise concrete DexServiceError subclasses. Existing-Flow reads
(describe_flow, wait_for_flow, and time_travel) raise
FlowNotFoundError when the Flow does not exist. Mutations, RPCs, timer/Step
waits, config updates, and continue-as-new triggers raise
FlowNotActiveError when no running Flow can accept the operation.
try:
client.invoke_rpc(orders.update_order, order_id, update)
except dex.FlowNotActiveError:
# The Flow is missing or already closed.
pass
Duplicate starts, worker failures, RPC lock contention, and long-poll timeouts
raise FlowAlreadyStartedError, WorkerInvocationError,
RpcLockConflictError, and LongPollTimeoutError. All service errors retain
code, sub_status, detail, operation, flow_id, and the original gRPC
exception through Python exception chaining. Worker failures also expose
worker_code, worker_error_type, and worker_error_detail. Registration,
serialization, and invalid handler returns use FlowDefinitionError,
ValueMappingError, and InvalidStepResultError.
Sync vs asyncio
- Sync (default):
ClientandWorkeruse blocking gRPC and a thread-pool Worker. A progress generator cooperatively hands each yielded frame to gRPC;Stream.writemust therefore be yielded. Blocking Client calls insideStep.executeare safe while other pool threads remain available. - Asyncio:
AsyncClientandAsyncWorkerusegrpc.aio. UseRegistry(..., allow_async_handlers=True)when Steps/RPCs are coroutines. Step coroutines annotateAsyncContext, callStream.writewithoutawait, and awaitcontext.heartbeat. Inside asyncexecute, injectAsyncClient— do not call syncClienton the Worker event loop. Async generators are rejected.
Integration scenarios live under
tests/integ. They exercise the same workflows,
client operations, and assertions as the Java suite against an isolated
dexcli dev environment.
Implementation status
The strongly typed contracts, registry, synchronous Client/Worker, optional
AsyncClient/AsyncWorker (grpc.aio), and Rust-backed BlobCache are
implemented. Python owns its gRPC transport; the native bridge is limited to
the shared BlobCache. Design notes:
python-sdk-async-apis.md and
python-sdk-step-streaming.md.
Running Dex locally
Install and start the complete local environment with dexcli:
brew install superdurable/tap/dexcli
dexcli dev
Dex Server listens on 127.0.0.1:8801. See the
CLI README for endpoints and persistence options.
How To Contribute
This project uses uv for Python versions, dependencies, virtual environments, locking, building, and publishing.
To install requirements:
uv sync --locked
Run the complete Python SDK integration suite with an isolated Dex development environment:
./run-integration-tests.sh
Measure integration coverage
Run the same integration suite with Python source coverage:
./run-integration-tests.sh --coverage
Only the integration scenarios contribute execution data, and only production
Python modules under dex are measured. Generated protobuf modules under
dex/dexpb are excluded. The
terminal report lists uncovered line ranges. The browser report starts at
coverage/html/index.html; coverage/coverage.xml and coverage/lcov.info
are also generated.
CI uploads LCOV to Codecov with GitHub OIDC under the
sdk-python-integration flag and retains the full report as the
sdk-python-integration-coverage Actions artifact.
Update IDL
Edit protos/dex.proto. Rename catalog: docs/design/idl-renames.md.
Generate stubs from IDL
make -C ../protos proto-python
Checked-in Python stubs land in dex/dexpb/.
Linting
Validate that every dex.__all__ class, function, constant, public method,
argument, return value, dataclass field, enum value, and public instance
attribute has a Google-style docstring:
uv run --frozen python scripts/check_public_docs.py
The checker resolves definitions from the public package export table, so
private helpers and generated protobuf modules are excluded. Use help(dex.Client)
or IDE hover information to read the same documentation. To run all other
linting for this project:
uv run --frozen pre-commit run --show-diff-on-failure --color=always --all-files
Code of Conduct
This project is governed by the Contributor Covenant v 1.4.1. (Review the Code of Conduct and remove this sentence before publishing your project.)
Publishing to PyPI
- Optionally run Publish Python SDK to PyPI via workflow_dispatch with a version and
publish=falseto validate all distributions without uploading. - Create a GitHub Release with tag
sdk-python/vX.Y.Z(for examplesdk-python/v0.1.0). CI stamps that version intopyproject.tomlfor the build (same idea as the TypeScript SDK release), then builds and smoke-tests Linux x86_64/ARM64, macOS x86_64/ARM64, and Windows x86_64 wheels, verifies the source distribution, and publishes withPYPI_TOKEN. - After publishing, bump the committed
pyproject.toml/ docs install line when you want the repo tip to reflect the released version.
A manual run publishes only from main, and only when publish is explicitly selected.
The dispatch version input is stamped the same way as a release tag.
See CONTRIBUTING.md for monorepo tag conventions.
License
Sustainable Use License 1.0, with legacy portions under their original terms as described in LEGACY_NOTICES.md.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
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 dex_python_sdk-0.6.0.tar.gz.
File metadata
- Download URL: dex_python_sdk-0.6.0.tar.gz
- Upload date:
- Size: 166.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5375f1c0f581aa5f7d64e76dddc6cfb7556149f09e56fab75091cf0840a60834
|
|
| MD5 |
f67458db836b743a45153d289bfeb8e3
|
|
| BLAKE2b-256 |
b6e3a9312978b9af6092f6c18f533ccdbeb27494f0e54193d64198f97bf6230a
|
File details
Details for the file dex_python_sdk-0.6.0-cp311-abi3-win_amd64.whl.
File metadata
- Download URL: dex_python_sdk-0.6.0-cp311-abi3-win_amd64.whl
- Upload date:
- Size: 537.3 kB
- Tags: CPython 3.11+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dcd03f90d9db8a95ad649423ca0c8118040a0e0267b38889e2029ec5c4fc8f0
|
|
| MD5 |
c454f5683dd95418232063f7c54a0e18
|
|
| BLAKE2b-256 |
2c06a7b2cbe60156f8ce3aff74acf92a075b3f7e6bda955ab9b196c459ff84d9
|
File details
Details for the file dex_python_sdk-0.6.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dex_python_sdk-0.6.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 693.4 kB
- Tags: CPython 3.11+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4b3d7050794b925e267f7a9675d473b76fe4d5ba850825b739297b5ce81af6a
|
|
| MD5 |
4897fc7a1d438405e42ef0b60970d287
|
|
| BLAKE2b-256 |
cdd12074411f40b6eedf3a09c0872df40e9f97b0709d8c5852e3a395f5e0ea08
|
File details
Details for the file dex_python_sdk-0.6.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dex_python_sdk-0.6.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 691.0 kB
- Tags: CPython 3.11+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00507237eda06fa03325e61a1741e62963e0db8ac2468a654ec9ba29974a491a
|
|
| MD5 |
e4029c7cfd48470cc247c76e82303b7c
|
|
| BLAKE2b-256 |
e97bdb57cf95b1dfaa85ca05b4cce810ebf6c84792a7f78a3b07d039e50108f0
|
File details
Details for the file dex_python_sdk-0.6.0-cp311-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: dex_python_sdk-0.6.0-cp311-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 628.1 kB
- Tags: CPython 3.11+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9abc9a7fd500726d67a5fb937d8076039d77c1f195505708ab580a2554cbbd08
|
|
| MD5 |
de30a08c1dd2ae3b332f5271ce6deb6d
|
|
| BLAKE2b-256 |
d658b627eda051a80268893b248d7ec0923b515010f9ab49700d179be7cabffe
|
File details
Details for the file dex_python_sdk-0.6.0-cp311-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: dex_python_sdk-0.6.0-cp311-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 649.6 kB
- Tags: CPython 3.11+, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd83c1f985d254dd6b8cc56d9574060c086ce7bf37ea0be5b81e238969105fd4
|
|
| MD5 |
103edd366b1b50c073399e10d8d16135
|
|
| BLAKE2b-256 |
5f2dd95cce066939d304b3f6aca6b4c1081f2ea9109ca70cbd5eb6c97c265a04
|