C-Two is a resource-RPC framework that enables resource-oriented classes to be remotely invoked across different processes or machines.
Project description
C-Two
A resource-oriented RPC framework for Python — turn stateful classes into location-transparent distributed resources.
Basic Idea
-
Resources, not services — C-Two doesn't expose RPC endpoints. It makes Python classes remotely accessible while preserving their stateful, object-oriented nature.
-
Zero-copy when local, transparent when remote — Same-process calls skip serialization entirely. Cross-process calls use shared memory. Cross-machine calls go over HTTP. Your code doesn't change.
-
Built for scientific Python — Native support for Apache Arrow, NumPy arrays, and large payloads (chunked streaming for data beyond 256 MB). Designed for computational workloads, not microservices.
-
Rust-powered transport — The IPC layer uses a Rust buddy allocator for shared memory and a Rust HTTP relay for high-throughput networking.
Quick Start
pip install c-two
Define a resource interface and its implementation
import c_two as cc
# Interface — declares which methods are remotely accessible
@cc.icrm(namespace='demo.counter', version='0.1.0')
class ICounter:
def increment(self, amount: int) -> int: ...
@cc.read
def value(self) -> int: ...
def reset(self) -> int: ...
# Implementation — a plain Python class holding state
class Counter:
def __init__(self, initial: int = 0):
self._value = initial
def increment(self, amount: int) -> int:
self._value += amount
return self._value
def value(self) -> int:
return self._value
def reset(self) -> int:
old = self._value
self._value = 0
return old
Use it locally (zero serialization)
cc.register(ICounter, Counter(initial=100), name='counter')
counter = cc.connect(ICounter, name='counter')
counter.increment(10) # → 110
counter.value() # → 110
counter.reset() # → 110 (returns old value)
counter.value() # → 0
cc.close(counter)
Or remotely — same API, different address
# Server process
cc.set_address('ipc:///tmp/my_server')
cc.register(ICounter, Counter(), name='counter')
# Client process (separate terminal)
counter = cc.connect(ICounter, name='counter', address='ipc:///tmp/my_server')
counter.increment(5) # works identically
cc.close(counter)
See
examples/for complete runnable demos.
Core Concepts
ICRM — Interface
An ICRM (Interface of Core Resource Model) declares which CRM methods are remotely accessible. Decorated with @cc.icrm(), method bodies are ... (pure interface — no implementation).
@cc.icrm(namespace='demo.greeter', version='0.1.0')
class IGreeter:
@cc.read # concurrent reads allowed
def greet(self, name: str) -> str: ...
@cc.read
def language(self) -> str: ...
Methods can be annotated with @cc.read (concurrent access allowed) or left as default write (exclusive access).
CRM — Core Resource Model
A CRM is a plain Python class that holds state and implements domain logic. It is not decorated — the framework discovers its methods through the ICRM interface.
class Greeter:
def __init__(self, lang: str = 'en'):
self._lang = lang
self._templates = {'en': 'Hello, {}!', 'zh': '你好, {}!'}
def greet(self, name: str) -> str:
return self._templates.get(self._lang, 'Hi, {}!').format(name)
def language(self) -> str:
return self._lang
Component — Consumer
Components consume CRM resources through ICRM proxies. The proxy is location-transparent — it works the same whether the CRM is in the same process or on a remote machine.
greeter = cc.connect(IGreeter, name='greeter')
greeter.greet('World') # → 'Hello, World!'
cc.close(greeter)
@transferable — Custom Serialization
For custom data types that need to cross the wire, use @cc.transferable. Without it, pickle is used as fallback.
@cc.transferable
class GridAttribute:
level: int
global_id: int
elevation: float
def serialize(data: 'GridAttribute') -> bytes:
# Custom serialization (e.g., Apache Arrow)
...
def deserialize(raw: bytes) -> 'GridAttribute':
...
serializeanddeserializeare written as instance-style methods but are automatically converted to@staticmethodby the framework.
Examples
Single Process — Thread Preference
When cc.connect() targets a CRM registered in the same process, the proxy calls methods directly with zero serialization overhead.
import c_two as cc
# Register two CRMs in the same process
cc.register(IGreeter, Greeter(lang='en'), name='greeter')
cc.register(ICounter, Counter(initial=100), name='counter')
# Connect — zero-serde thread-local proxies
greeter = cc.connect(IGreeter, name='greeter')
counter = cc.connect(ICounter, name='counter')
print(greeter.greet('World')) # → Hello, World!
print(counter.value()) # → 100
counter.increment(10)
# Cleanup
cc.close(greeter)
cc.close(counter)
cc.shutdown()
Best for: local prototyping, testing, single-machine computation.
Multi-Process — IPC
Separate server and client processes communicating over Unix domain sockets with shared memory.
Server (server.py):
import c_two as cc
cc.set_address('ipc://my_server')
cc.register(IGrid, grid_instance, name='grid')
print(f'Listening at {cc.server_address()}')
cc.serve() # blocks until interrupted
Client (client.py):
import c_two as cc
grid = cc.connect(IGrid, name='grid', address='ipc://my_server')
infos = grid.get_grid_infos(1, [0, 1, 2])
keys = grid.subdivide_grids([1], [0])
cc.close(grid)
cc.shutdown()
Best for: multi-process on same host, worker isolation, high-throughput local IPC.
Cross-Machine — HTTP Relay
An HTTP relay bridges network requests to CRM processes running on IPC.
CRM Server (resource.py):
import c_two as cc
cc.set_address('ipc://grid_server')
cc.register(IGrid, grid_instance, name='grid')
# Auto-registers with relay when C2_RELAY_ADDRESS is set
cc.serve()
Relay (relay.py):
from c_two.transport.relay import Relay
relay = Relay(bind='127.0.0.1:8080')
relay.start(blocking=True)
Client (client.py):
import c_two as cc
# Same API — just change the address
grid = cc.connect(IGrid, name='grid', address='http://127.0.0.1:8080')
grid.get_grid_infos(1, [0])
cc.close(grid)
Best for: network-accessible services, web integration, cross-machine deployment.
Architecture
The design philosophy of C-Two is not to define services, but to empower resources.
In scientific computation, resources encapsulating complex state and domain-specific operations need to be organized into cohesive units. We call these Core Resource Models (CRMs). Applications care more about how to interact with resources than where they are located. We call resource consumers Components. C-Two provides location transparency and uniform resource access, allowing components to interact with CRMs as if they were local objects.
graph LR
subgraph Component Layer
C1[Component] -->|cc.connect| P1[ICRM Proxy]
C2[Component] -->|cc.connect| P2[ICRM Proxy]
end
subgraph Transport Layer
P1 --> T{Protocol<br/>Auto-detect}
P2 --> T
T -->|thread://| TH[Thread<br/>Direct Call]
T -->|ipc://| IPC[IPC<br/>UDS + SHM]
T -->|http://| HTTP[HTTP<br/>Relay]
end
subgraph CRM Layer
TH --> CRM1[CRM Instance]
IPC --> CRM1
HTTP --> CRM1
end
Component Layer
Client-side consumers that access remote resources through ICRM proxies. The proxy provides full type safety and location transparency — components don't know (or care) where the CRM is running.
- Script-based:
cc.connect(ICRMClass, name='...', address='...')returns a typed ICRM proxy - Function-based:
@cc.runtime.connectdecorator injects the ICRM proxy as the first parameter
CRM Layer
Server-side stateful resources exposed through standardized ICRM interfaces.
- CRM: Plain Python class — state + domain logic. Not decorated.
- ICRM: Interface class decorated with
@cc.icrm(). Only methods declared here are remotely accessible. @transferable: Custom serialization for domain data types (e.g., Apache Arrow for scientific data).@cc.read/@cc.write: Concurrency annotations — parallel reads, exclusive writes.
Transport Layer
Protocol-agnostic communication with automatic protocol detection based on address scheme:
| Scheme | Transport | Use case |
|---|---|---|
thread:// |
In-process direct call | Zero serialization, testing |
ipc:///path |
Unix domain socket + shared memory | Multi-process, same host |
http://host:port |
HTTP relay | Cross-machine, web-compatible |
The IPC transport uses a control-plane / data-plane separation: method routing flows through UDS inline frames while payload bytes are exchanged via shared memory — zero-copy on the data path.
Rust Native Layer
Performance-critical components are implemented in Rust and compiled as a Python extension via PyO3 + maturin:
- Buddy Allocator — Zero-syscall shared memory allocation for the IPC transport. Cross-process, lock-free on the fast path.
- HTTP Relay — High-throughput axum-based gateway bridging HTTP to IPC. Handles connection pooling and request multiplexing.
The Rust extension is compiled automatically during pip install c-two (from pre-built wheels) or uv sync (from source).
Installation
From PyPI
pip install c-two
Pre-built wheels are available for:
- Linux: x86_64, aarch64
- macOS: Apple Silicon (aarch64), Intel (x86_64)
- Python: 3.10, 3.11, 3.12, 3.13, 3.14, 3.14t (free-threading)
If no pre-built wheel is available for your platform, pip will build from source (requires a Rust toolchain).
Development Setup
git clone https://github.com/world-in-progress/c-two.git
cd c-two
uv sync # install dependencies + compile Rust extensions
uv run pytest # run the test suite
Requires uv and a Rust toolchain.
Roadmap
| Feature | Status |
|---|---|
| Core RPC framework (CRM / ICRM / Component) | ✅ Stable |
| IPC transport with SHM buddy allocator | ✅ Stable |
| HTTP relay (Rust-powered) | ✅ Stable |
| Chunked streaming (payloads > 256 MB) | ✅ Stable |
| Heartbeat & connection management | ✅ Stable |
| Read/write concurrency control | ✅ Stable |
| CI/CD & multi-platform PyPI publishing | ✅ Stable |
| Async interfaces | 🔜 Planned |
| Disk spill for extreme payloads | 🔜 Planned |
| Cross-language clients (Rust/C++) | 🔮 Future |
See the full roadmap for details.
License
Built for scientific Python. Powered by Rust.
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 Distributions
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 c_two-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d865ecc873d68257b2b369713899842683f16d63fb55f0997873626de094c792
|
|
| MD5 |
45ccca3abdcd5b61f6c3df525f58c8c0
|
|
| BLAKE2b-256 |
c0004354c5861587098403d982d4712dcb62e12a7050427c5aba6136e4d484d4
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
d865ecc873d68257b2b369713899842683f16d63fb55f0997873626de094c792 - Sigstore transparency entry: 1199124617
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: c_two-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a0b274358d5b39ac6e726a199a8bd104d0abc8a10ec1f4dc86765243be40c28
|
|
| MD5 |
50efd7b3d0be42fb7a4a0754232d865a
|
|
| BLAKE2b-256 |
2b502650ca85d133c5ef34a40c25fa8e5b684b41856db38400284770760e6131
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
9a0b274358d5b39ac6e726a199a8bd104d0abc8a10ec1f4dc86765243be40c28 - Sigstore transparency entry: 1199124483
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: c_two-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b3978318cc0bd88746a6050a4dda1e22abad275141608b6723184736607038f
|
|
| MD5 |
93eae49e76c7786a8f757c9085023965
|
|
| BLAKE2b-256 |
55cc2dca1c1aa8063eb1a50458ac4d118ef13d9481a8bb998bff8d63a09f0b6f
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
5b3978318cc0bd88746a6050a4dda1e22abad275141608b6723184736607038f - Sigstore transparency entry: 1199124567
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dce2cfa2ab85da7143830a7cfe5c7db59efd8045d868b658bdb26ee8cab0f4c2
|
|
| MD5 |
a281c05a8d22fbe1f26fc0779a36c244
|
|
| BLAKE2b-256 |
df0ef5b091ec2084ac5cf322fd5067d15dac153e7563bc0aaa209fed960a379b
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl -
Subject digest:
dce2cfa2ab85da7143830a7cfe5c7db59efd8045d868b658bdb26ee8cab0f4c2 - Sigstore transparency entry: 1199124596
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74cec525a93d4085d7401b97f50cceb52afcb9caaff0b23d58457bcabc7e0b30
|
|
| MD5 |
a65874b2413c2afb91256839188fa857
|
|
| BLAKE2b-256 |
9628efc3206711284de84aada6fc1050d1e630a5faf6362d561dc8d12aab384f
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
74cec525a93d4085d7401b97f50cceb52afcb9caaff0b23d58457bcabc7e0b30 - Sigstore transparency entry: 1199124416
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: c_two-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c9b466d93998ab4fc97e3ddc3fce6e13fe09d257617ed81763c26e0a3150ecc
|
|
| MD5 |
9dbe003117d36537a617985b080fa258
|
|
| BLAKE2b-256 |
304c665de650eb1d7828978114727e7c46d9d96bc941635f6b3743257a74cb50
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
3c9b466d93998ab4fc97e3ddc3fce6e13fe09d257617ed81763c26e0a3150ecc - Sigstore transparency entry: 1199124643
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: c_two-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49aa5b3dd610eceb3488828e4ff90921c3d25cbaca2ba766f8695c7b25b2c6ab
|
|
| MD5 |
a9166d5c1e46785cd29388acec67838b
|
|
| BLAKE2b-256 |
4957c0e416ae2559316e507ce337952d19f3bf2802efc6b7667835bebdd39a0d
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
49aa5b3dd610eceb3488828e4ff90921c3d25cbaca2ba766f8695c7b25b2c6ab - Sigstore transparency entry: 1199124809
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2893a8b2c396388dd8e9019e8566d4424147cb25561df9bc80e968342c1fd676
|
|
| MD5 |
5ff2da4a1fbc984220a7330521fa6454
|
|
| BLAKE2b-256 |
a91fc63b82dbe0c7cb182946dfb6110d818946f76535a598adefece5268f9bb3
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
2893a8b2c396388dd8e9019e8566d4424147cb25561df9bc80e968342c1fd676 - Sigstore transparency entry: 1199124878
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcc64e3ffeb3e39f06e362111e5c79ad6af96bc95116710b674c71bdab99a7e2
|
|
| MD5 |
ef346a920511778b64036f64d39ab3e0
|
|
| BLAKE2b-256 |
fdde55d8a8ff9ffe01608945bce0056be800490d374ea5e20e9d62549de6a369
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
bcc64e3ffeb3e39f06e362111e5c79ad6af96bc95116710b674c71bdab99a7e2 - Sigstore transparency entry: 1199124697
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: c_two-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
879cb41f6f0891742ee615e1d5c5b441aae139d30640f33887f9b8cedde66dfb
|
|
| MD5 |
746fbfb6129c5bd47b2b0550abbbde37
|
|
| BLAKE2b-256 |
9ed3e3e9cdacb536b2cba67f99eb0de524b98833590b857da9eb79b9ac9691b7
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
879cb41f6f0891742ee615e1d5c5b441aae139d30640f33887f9b8cedde66dfb - Sigstore transparency entry: 1199124764
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: c_two-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0fc3084f3798a58b527ee311b516ed8fcf334d9325ca862f62d2bce59ca0be6
|
|
| MD5 |
7a856c096f020ecb73a0f2e67c007e99
|
|
| BLAKE2b-256 |
357a35444368a33687864d27647b53ce8aa4ab98fa32edab72e95bd1d4e69b1f
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
c0fc3084f3798a58b527ee311b516ed8fcf334d9325ca862f62d2bce59ca0be6 - Sigstore transparency entry: 1199124379
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47f74a7247c5a8edf91c771d34e4ac18df630a303e1f031a88f692ef21843301
|
|
| MD5 |
ed2d104a233863a3eec0a379fce14ebe
|
|
| BLAKE2b-256 |
c75cff2dd168d8e093e27a0392290562f9d3629c048e9203851dac0fa49b7ba1
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
47f74a7247c5a8edf91c771d34e4ac18df630a303e1f031a88f692ef21843301 - Sigstore transparency entry: 1199124902
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf1feaca11012ae0c4ced702974e89e97ecd935da5880906cf0de441921f9ad0
|
|
| MD5 |
26cb324f7300da8061fc3b6f013150bf
|
|
| BLAKE2b-256 |
479cf961c83f9c17ec83a8765262fbf5da070d63b883d75529304535f47362b2
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
bf1feaca11012ae0c4ced702974e89e97ecd935da5880906cf0de441921f9ad0 - Sigstore transparency entry: 1199124828
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: c_two-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
224681704ce724ad96ca5737256b096f9c0ac441df60cc41e9f660afa56a08ae
|
|
| MD5 |
a3cba4d0f7c77ae00e1702ee41bf7d65
|
|
| BLAKE2b-256 |
ca60e8e8eb580a07904bd1d262da0feba42e12998aec724a8bc2c99d6af5504b
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
224681704ce724ad96ca5737256b096f9c0ac441df60cc41e9f660afa56a08ae - Sigstore transparency entry: 1199124460
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: c_two-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40f16c2cbd3f2e26c1d1cd1cc5a8ab1ef98b6ba71e75141300fc754e0d801a72
|
|
| MD5 |
4de94b235a2b43b1fe682f89cd07d0a4
|
|
| BLAKE2b-256 |
bc1046607174516702dc7e352edf5e3581a95bfe7c244b787c51236357a83255
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
40f16c2cbd3f2e26c1d1cd1cc5a8ab1ef98b6ba71e75141300fc754e0d801a72 - Sigstore transparency entry: 1199124676
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7511762f3385bde0386d26b35aaeca2c819bdc57dce36ecab2764ea62332e859
|
|
| MD5 |
256dd681021ff63ff9a5d70ace624b93
|
|
| BLAKE2b-256 |
60a81c89208c13227d5da806f8088acab74694b728f8d4359cf391a10a78829d
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
7511762f3385bde0386d26b35aaeca2c819bdc57dce36ecab2764ea62332e859 - Sigstore transparency entry: 1199124721
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5b16dca9afb4074d2c29ba7793791a804c4648326cfc0d504cb990a0cda5eb6
|
|
| MD5 |
d89ca1257c8796c1d95d693c811d0e20
|
|
| BLAKE2b-256 |
023d46412808a8e310f01e74db360d9a7c6ee75c36cc05542d44be63dcc7bfa9
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
d5b16dca9afb4074d2c29ba7793791a804c4648326cfc0d504cb990a0cda5eb6 - Sigstore transparency entry: 1199124788
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: c_two-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf751887d076ee7a00f1d83e640b1cc103b089dbfe78059715565c20f0943903
|
|
| MD5 |
e03f9cc4da7c18d855ab304f047d004f
|
|
| BLAKE2b-256 |
7313d8fa22ae2c0135748dd84258b8a0fafabc3ff29285834b34b1b124f40e27
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
bf751887d076ee7a00f1d83e640b1cc103b089dbfe78059715565c20f0943903 - Sigstore transparency entry: 1199124849
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: c_two-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
498205b9e8a083592e77d88bad859813dd0f6102348c361045a8d622b2c39854
|
|
| MD5 |
3766fea8204ead0b2a00dd6905b0b71e
|
|
| BLAKE2b-256 |
f587e524e41134099c9666ed3881b29e1466fbb942111dc666545f5b23b1ebca
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
498205b9e8a083592e77d88bad859813dd0f6102348c361045a8d622b2c39854 - Sigstore transparency entry: 1199124927
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4457753f9291b86fec878c3f06a1e8a9b5034e4b0f907c11b1e19862d09c1347
|
|
| MD5 |
7581a9d03280209617c2a2fed0e96b29
|
|
| BLAKE2b-256 |
912698d845c43cee2a335974b8da5ae1014eb8a4892ea89a18c2b16c1f00fed7
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
4457753f9291b86fec878c3f06a1e8a9b5034e4b0f907c11b1e19862d09c1347 - Sigstore transparency entry: 1199124505
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
237a15043c3d3fc6e50a63dba04b155da0920f4d91ba766f53b46c63033f80e5
|
|
| MD5 |
65f1d615928ccc587345431d57b8437d
|
|
| BLAKE2b-256 |
8ab1843375f2697ea6057d3c937c4477c3cbd1f77e3ae8b23094e5aefa431aec
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
237a15043c3d3fc6e50a63dba04b155da0920f4d91ba766f53b46c63033f80e5 - Sigstore transparency entry: 1199124438
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: c_two-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec695f89fa85dff53a756dd7006bdc6e5821b3238ae5170bf42af95e5275a2c9
|
|
| MD5 |
3559d1169baeed5d740941ab61c1ef09
|
|
| BLAKE2b-256 |
99a68c29c8d51ed46fb3efc1bd41d08657f7a936b3affb9f42e559f55a357541
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ec695f89fa85dff53a756dd7006bdc6e5821b3238ae5170bf42af95e5275a2c9 - Sigstore transparency entry: 1199124743
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: c_two-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ea6cf9a288ed80d77795892cd2f25fb7504a7ac990898de13ae967c1e035ed9
|
|
| MD5 |
d2d9589e96c4a54eece36b7e092398fe
|
|
| BLAKE2b-256 |
3b0945870f3aea584420fb6ced6a3f4c4f27c06bfdb854bf5431a0a7a332f153
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
2ea6cf9a288ed80d77795892cd2f25fb7504a7ac990898de13ae967c1e035ed9 - Sigstore transparency entry: 1199124545
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type:
File details
Details for the file c_two-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: c_two-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05ecd0c0b2f8a967e54ccd1b8f72541f52ef7b806c42406e6a699048546e51bb
|
|
| MD5 |
9c0ce9b22ebc0c37d272ef5435ac7fa4
|
|
| BLAKE2b-256 |
e986eb595d3fee8226c3a8ee9e99e533f170868ccdb1d38c92368b779ee319db
|
Provenance
The following attestation bundles were made for c_two-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
release.yml on world-in-progress/c-two
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
c_two-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
05ecd0c0b2f8a967e54ccd1b8f72541f52ef7b806c42406e6a699048546e51bb - Sigstore transparency entry: 1199124524
- Sigstore integration time:
-
Permalink:
world-in-progress/c-two@a8641ce1446c16e04cc34714a3927ba0229be26b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/world-in-progress
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a8641ce1446c16e04cc34714a3927ba0229be26b -
Trigger Event:
push
-
Statement type: