Skip to main content

Python bindings for A3S Flow workflow engine

Project description

A3S Flow Python SDK

Python bindings for the A3S Flow workflow engine.

Installation

pip install a3s-flow

Quick Start

from a3s_flow import FlowEngine

# Create a flow engine
engine = FlowEngine()

# Define a simple workflow
definition = {
    "nodes": [
        {"id": "start", "type": "noop"},
        {"id": "process", "type": "noop"}
    ],
    "edges": [
        {"source": "start", "target": "process"}
    ]
}

# Start the flow
execution_id = engine.start(definition, {})

# Check the state
state = engine.state(execution_id)
print(f"Status: {state.status}")

# Pause and resume
engine.pause(execution_id)
engine.resume(execution_id)

# Terminate
engine.terminate(execution_id)

API Reference

FlowEngine

FlowEngine()

Create a new flow engine with default built-in nodes.

start(definition: dict, variables: dict = None) -> str

Start a new flow execution.

  • definition: Flow definition with "nodes" and "edges"
  • variables: Initial variables (optional)
  • Returns: Execution ID as a string

pause(execution_id: str)

Pause a running flow execution.

resume(execution_id: str)

Resume a paused flow execution.

terminate(execution_id: str)

Terminate a running flow execution.

state(execution_id: str) -> ExecutionState

Get the current state of a flow execution.

node_types() -> list[str]

List all registered node types.

ExecutionState

  • status: "running", "paused", "completed", "failed", or "terminated"
  • result: FlowResult (only present when status is "completed")
  • error: Error message (only present when status is "failed")

FlowResult

  • execution_id: Unique ID for this execution run
  • outputs: Per-node outputs, keyed by node ID
  • completed_nodes: IDs of all nodes that were processed
  • skipped_nodes: IDs of nodes that were skipped
  • context: Final snapshot of the shared mutable context

Development

Build from source

cd sdk/python
pip install maturin
maturin develop

Run tests

pytest

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

a3s_flow-0.3.4-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

a3s_flow-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

a3s_flow-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

a3s_flow-0.3.4-cp313-cp313-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

a3s_flow-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

a3s_flow-0.3.4-cp313-cp313-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

a3s_flow-0.3.4-cp313-cp313-macosx_10_12_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

a3s_flow-0.3.4-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

a3s_flow-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

a3s_flow-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

a3s_flow-0.3.4-cp312-cp312-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

a3s_flow-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

a3s_flow-0.3.4-cp312-cp312-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

a3s_flow-0.3.4-cp312-cp312-macosx_10_12_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

a3s_flow-0.3.4-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

a3s_flow-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

a3s_flow-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

a3s_flow-0.3.4-cp311-cp311-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

a3s_flow-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

a3s_flow-0.3.4-cp311-cp311-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

a3s_flow-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

a3s_flow-0.3.4-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows x86-64

a3s_flow-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

a3s_flow-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

a3s_flow-0.3.4-cp310-cp310-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

a3s_flow-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

a3s_flow-0.3.4-cp310-cp310-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

a3s_flow-0.3.4-cp310-cp310-macosx_10_12_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

a3s_flow-0.3.4-cp39-cp39-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.9Windows x86-64

a3s_flow-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

a3s_flow-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl (4.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

a3s_flow-0.3.4-cp39-cp39-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

a3s_flow-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

a3s_flow-0.3.4-cp39-cp39-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

a3s_flow-0.3.4-cp39-cp39-macosx_10_12_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file a3s_flow-0.3.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5c5df6ce0114392d8c6b246ce984bdee3330aa6faa1fad61449ea48e697a0765
MD5 aa133e6c6e7f3e3d7b325e1745f9bcdd
BLAKE2b-256 cbbdd1d82aed5335321954914623df4753b6a5430feb713275e32651c6dbf06e

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7aa8aa388bcd6a1098714d1fbb947c2bb1d05370b1412999ccef286e4caa154
MD5 3b93542466145fa34ada4bb4918c3e25
BLAKE2b-256 8484bf268971809e6a0e233944fce571ca2c6e29f08dfb8f2cd0be8e51115146

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a3c48f136b252ba6ee1ad897ca7fe7fb0ac637cc8df0776de4a9aa19fecdb35
MD5 4dfa72267ea54fe3b30fd7f51def8659
BLAKE2b-256 7a1fdb64f3b194c3bf91eb6df344f8a00e755937213104a9f54a4933897cf714

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59141e93441c2b011d78acc0326987806cfe8ad7910a776760408b5fc33392b9
MD5 8e0a9c7fe1f81e0b9ab05feb10fc0739
BLAKE2b-256 189b160205f513ae7f4cc13afa18f41bc9811c9a291707758c4a5a29f7cc41b7

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84359142eb700062ef28f09cb2b18a6f785a5f295b53975dc21a07f01a66a71f
MD5 0bbd444781ff8a179876adc3618474cc
BLAKE2b-256 0a4744d6dd1a911aff626b378ba5d3cbe4d6e6243d6d5e156291161295bf2c27

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2d32c4d4899cc132c680511a89ceeb7411309f6aad1eecdbec1044cd3de9f9b
MD5 42736157dc8917173058b2a4c85b5312
BLAKE2b-256 0ef831ed9143263b285c05adff847cb130e223f48ffb14c342a2c1e5fdae522f

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa14d8fd8ad4e9878ced7b18f5f25b1fb1944df1bbc7a2555b699c26ad06dc55
MD5 e65ead8d736a41a8dea582d212d39235
BLAKE2b-256 8a981387ac5f5f355ba3da190410f8d6cde6c43b26268ae93b6bd011cffaaf64

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6e708b43005ef06d368b5efabd6c72439dcd9af12a7304cf33b6a40e0c35db30
MD5 7956be52373d898e6fb78feee0a05593
BLAKE2b-256 976d9d4f9ca32e4eb9242fbb2a771ef874ede4aac29fafa8c14fef8c4510a039

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a75edd242bff6a40b6f710df7759395aaef7ddfc088f9d05e1659de035dc211d
MD5 61813150002ea883c290df1ac540b30f
BLAKE2b-256 a0f6fbd8d410b2dcd88ffefce1bc43592229ab6c14599cc48bfc203789e8e2be

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f02e6cd8bc3434c045ca65d25f1509e6da254f689e9e5160f7614d2ef2b1719
MD5 1551b4b1368f8f2ecce30a00ab01220d
BLAKE2b-256 05cf41079146162984048803179e093b4b92e5ddfd3f7a2f8670ba8bcb4af890

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbe26b4e22cb86001b0878e58db857c4b25807670a34e0ade5531b1e648afca1
MD5 ecbf653730c4cf4126692f58778e0993
BLAKE2b-256 46ec0772ab4afa53d01cfd5d8fb6329748424986c68b98fc21e4f48a9c90f2f4

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7b7295ba4fbc11f17e2e090e3bf9b589161226a5c80bdece76da998ce2cc5a1
MD5 d3a0d39ef4603f800432d19bed8b0252
BLAKE2b-256 b87df56074ff2167b8e9b3a697dd84fe6d9ff5651a6ff698e331cf678fa929c8

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a4e93b42e53349529a337bf5e3e50cfbaf62b4392670d1458737a68478c3413
MD5 5701394705d1190514d469c925895b85
BLAKE2b-256 4ec31bb93ccbd4051d347ac9faa4317031536be5e5ec009e7fe8b2f8fb15b301

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bbd1a515355b068533522c844c1c2d5fc940b5602dc6a5b642cbd746ac573232
MD5 713dfd505b573868d4184127973e1022
BLAKE2b-256 71d14d41f02716bf9f195865f074c75ab617327fbea31e405618da81641632c8

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ceadac3cde6d3b542df58b806b78bc1103f717dee2210fe239c59e7a3aba4a8
MD5 5630c2458bccb400dbf7bf3b379350a5
BLAKE2b-256 9a005c4327e0c448282faadab54c318bb32929a33e56c59bafdcd00bd3dda089

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9547cc6affa698aa6673d2811c6a0b45ec2c8370c59fc61310d31826136d567a
MD5 44831a3b6d370bd061ae3277bc4d64a0
BLAKE2b-256 c26986feacef0235f64c8bfca22d8a85e4f10eb449796b1b2bca6903796a432f

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e271b279c6d217749a23e3e53c0b5c8373c96051d28d16382514fdb9d42dc73
MD5 8cf14823b8ff47201a3a4dadeb82b9fc
BLAKE2b-256 91d138704eed162a5e5248f5bc6d720c2b0cc9d0dc21269ca69bb2ba3c21bf66

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5aeb76ecde10f75056189c5ed78b236c2d285a1a9b5ff0ba24a98258df3ead0e
MD5 828c375fa040689acf9d3823dc2f7402
BLAKE2b-256 b409f6d78343aadd84b5eac6c1d3c8fcbe153ca7c4e540b21b8716add7315870

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c89ef0ab3f466ae093b13c5c2da4297728bbb386334a1bfd872cd2d1bcd6a250
MD5 a428aafc7590a7bbfd05aeba4564089a
BLAKE2b-256 48fe4c6fb40749617bdb6d723ff91987bb6f752cb2555f15d856ebb3caee5140

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d56c84396276264f993f14dd1014ae38413a26a1b1815a77f83f9fbb48aa3a1
MD5 cee9813d6fd7e6e224d772f5b921b1c8
BLAKE2b-256 ca4cbaf1137b7137ea001c8c47abf4e0d67d0c7bb7360829a752e9b2fbdb1e50

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c5200d666ec07d0ba3ae0bff1c62952bc2166262ffa962d5d1f4e1eb5ab639f
MD5 98d31647720406d5daff211169f9b704
BLAKE2b-256 d5319d6fdd46f0b0b358101dc17e9c7fa4fd5d76848db616b074cb75cf65c389

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d8786d3237179e7463dca95a86fafce89c9a0ec47747f480d8b612bb4e66bec
MD5 ed79a2e1b53f16e860a1c26c0f44fdff
BLAKE2b-256 e2f72ed40cc6f18659b3f66701fcd783a6d3365295991249256225187ba2eada

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dab2c18c6d459b50a9f5b7b5d8f92012dc5117db19baba7b72a7656d774abca0
MD5 4c824514d102fa5956ab661d934fb5cc
BLAKE2b-256 7029266e11f5767f6d260fd7d41a5cccb9c71793935091aec614f33200c8a7fe

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b5fcc27a5775042c091215c492c8bfa9b2db01f2cf4be0f489823f983db1b3d
MD5 d85fbce302ce73e0a9510f6c6d308466
BLAKE2b-256 5e792b2cb0dc8e67325d261dd0120e2090b0cbd981d897ed28d4bc3db5749254

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28523b7cdb31e3bf3c622d845715e0aed23abd61e97f18d1d4091894bb1d984b
MD5 b7460df0d264a8b0dd1a7749d8ebb3b6
BLAKE2b-256 3a96d5b3443cc91331c5a14495bb50a8215519e2fb3ea0d92763687f114dd26a

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf81b75ff36071d3be922698a52af473beffbb05a06e9f2ad3c3a4f18d6e5b9d
MD5 4f60d2073dc80437d9ea9e1e2cfdcb23
BLAKE2b-256 c2094542a7e8afe29213693dde784bafbc9aa57d4e9a8458449391b11effb826

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6c729d43b1902ead232ac4fe52b9b4af5eee8d34fe6fbdf5a905ee80c1c684d
MD5 fce32092fcb759604f43c0efaf8b5ba6
BLAKE2b-256 55505f3cf5e3cabda2991f3d09bf3c4a99ae598e268e9d164665466bca4b9544

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfe20ca86302cdc3fc2056092d7bf48c28f1a78a98f68cdd2755bffb33a9b6ec
MD5 f0adacb87eb2c30b8c00d8451d9eace3
BLAKE2b-256 40469f9592b350fed26d7b8120f19ce7bd6ded2cffd9d02c176f65e7889c2e1e

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: a3s_flow-0.3.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for a3s_flow-0.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b6c9a2d83ddb027536b2a25d63aa434be281fdc5e9e66dddbcded3f818226e9
MD5 8534ecbeb201855c45583a0ccc99852e
BLAKE2b-256 86845ea1e64470f38b39c37383a005b5f534afa6a22aefd2c1085513fa56ebe6

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51704cb14d52883dcf793c43bec0cd727c4b3d0946ea55da1dd07b2076ee05ce
MD5 304a5275dbad040510e5d4e4e76477d5
BLAKE2b-256 2ff90a205ff5aa5b7c49f4a3d7046a2883d7baf2e6d2d688daa4f93b9172f7ea

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ee83c5e49770c6ed053f58b176fb502eee48fdc03e7a998f8d3663014cf6101
MD5 30cebc20ae59b16ce6eb2e7368ca59cd
BLAKE2b-256 27d32197b4769c0aadf4a60281b260ef0763837319f6374d8c5935070404f37f

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0ea3d34898fb62ffeb8c7e8eab623ac0b579d01544c87fb80a6411d52219a39
MD5 b5a9d5c342611907d81818cc2e20eb16
BLAKE2b-256 98d75029bbe3acb571200e0c2118477db9a0db405cd67ce1ab02c9c5d64deb1e

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00ae5fa058c06582ce888d378ad8c66ea02e5ec9f9da8b0d28062eebd671878f
MD5 f096278a5de632fbb241acb949dbd95e
BLAKE2b-256 c3a8b362e33c2b58399c7b996a75bcbee64d948f65d007b20ef1023aada08d1c

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ca0f3cac160cc2aaf0f5ca2b712472f8019464c38c756835d1791763bef80d2
MD5 383724010dc90f5200def91547192057
BLAKE2b-256 6083f1bdacbab371ad75dcf384105975b261ba82f91ae4613a95005257c6a897

See more details on using hashes here.

File details

Details for the file a3s_flow-0.3.4-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for a3s_flow-0.3.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bc0814c58fa359a4794d2438446affa7ce448e7c2b44a8572f2d22af26cdd58
MD5 c64a5983c25afa052341900b8c24a107
BLAKE2b-256 a508f89c175f5a8db0b00ce5f7790f338289c22a44429c0c84ed402c2899a6a4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page